// you’re reading...
1 Star2 Stars3 Stars4 Stars5 Stars (15 votes, average: 4.67 out of 5)
Loading...

Project Euler Solutions

Project Euler 29 Solution

Project Euler 29 Solution

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.

download arrowUse 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

Discussion

2 Responses to “Project Euler 29 Solution”

  1. You’re welcome Ye, it is my pleasure.

    Posted by Mike | August 25, 2012, 11:24 AM
  2. You teach me a lot,
    Many thanks to you.

    Posted by ye wang | August 25, 2012, 6:55 AM

Post a comment