Problem:
How many different numbers are obtainable from five 5s by first concatenating some of the 5s, then multiplying them together? For example, we could do , or , but not or .
Solution
Solution:
Answer:
If we do , then we're done.
Note that , , , and all have completely distinguishable prime factorizations. This means that if we are given a product of them, we can obtain the individual terms. The number of 's is the exponent of , the number of 's is the exponent of , the number of 's is the exponent of minus the exponent of , and the number of 's is just whatever we need to get the proper exponent of .
Then the answer is the number of ways we can split the five 's into groups of at least one. This is the number of unordered partitions of , which is .
Want a route through all this instead of an archive? The track
puts 2,000 problems in a working order, from AMC 10 level to the IMO shortlist.