A unit fraction contains 1 in the numerator. The decimal representation of
the unit fractions with denominators 2 to 10 are given:
Where means , and has a 1-digit recurring cycle. It can be seen that has a 6-digit recurring cycle.
Find the value of for which contains the longest recurring cycle in its decimal fraction part.
For this problem I taught the computer how to do long division.
As I converted the fraction into decimal form with long division, I saved
the pairs of quotients and remainders in an array. Then, after each operation
I checked the pairs to see if there was a match. If so, I knew the sequence
had repeated and based on the index of the pairs I could determine the
repetend length. I also only checked 900 - 1000 since, based on research,
I had a good idea the final answer would be a large prime.
74,423