Project Euler 29: Find the number of distinct terms in the sequence generated by ab
Problem Description
Consider all integer combinations of ab for 2 ≤ a ≤ 5 and 2 ≤ b ≤ 5:
22=4, 23=8, 24=16, 25=32
32=9, 33=27, 34=81, 35=243
42=16, 43=64, 44=256, 45=1024
52=25, 53=125, 54=625, 55=3125
If they are then placed in numerical order, with any repeats removed, we get the following sequence of 15 distinct terms:
4, 8, 9, 16, 25, 27, 32, 64, 81, 125, 243, 256, 625, 1024, 3125
How many distinct terms are in the sequence generated by ab for 2 ≤ a ≤ 100 and 2 ≤ b ≤ 100?
Analysis
Build a set of distinct ab terms using Python’s set data type and print the set’s length.
Project Euler 29 Solution
Runs < 0.005 seconds in Python 2.7.Use this link to get the Project Euler 29 Solution Python 2.7 source.
Afterthoughts
- Python supports large integers inherently.
- The answer for ab for 2 ≤ a ≤ 200 and 2 ≤ b ≤ 200 is 37,774
- and for 2 ≤ a ≤ 1000 and 2 ≤ b ≤ 1000 is 977,358.
- Mathematica: Length@Union@Flatten@Table[a^b,{a,2,100},{b,2,100}]
Project Euler 29 Solution last updated
You’re welcome Ye, it is my pleasure.
You teach me a lot,
Many thanks to you.