A Repeat of Pi (ambiguity)
-
- Posts: 273
- Joined: Thu Apr 10, 2008 9:47 pm
A Repeat of Pi (ambiguity)
I am trying to figure out exactly what kind of repeating sequence you are looking for. I know it is not something like 1111111 since that would be too easy.
I tried searching for a string of x length that appears more than once in the sequence, but that either didn't find an answer or ate an extreme amount of cpu.
Now I am trying to find something such as 123456123456 (appearing consecutively). I know it must be at least 12 digits (there was more than one that was 10 digits). but that is also eating a lot of cpu and I do not even know if I am doing this the correct way.
Sorry to ask so many questions but hopefully this will help anyone else who might have a similar problem
I tried searching for a string of x length that appears more than once in the sequence, but that either didn't find an answer or ate an extreme amount of cpu.
Now I am trying to find something such as 123456123456 (appearing consecutively). I know it must be at least 12 digits (there was more than one that was 10 digits). but that is also eating a lot of cpu and I do not even know if I am doing this the correct way.
Sorry to ask so many questions but hopefully this will help anyone else who might have a similar problem
-
- Posts: 61
- Joined: Wed Apr 30, 2008 3:31 am
-
- Posts: 106
- Joined: Thu Oct 29, 2009 9:21 pm
Confirmation
Can anyone confirm that for sequences first appearing in the first hundred thousand digits, there are several candidates with the top length 10 digits?
There is no spoon.
-
- Forum Admin
- Posts: 496
- Joined: Sat May 28, 2011 9:14 am
- Location: Germany
If my program works correctly, your answer is not wrong, but incomplete:moose wrote:Lets make a rather short example. For 100 digits of pi the correct solution would be 592, would it?
Code: Select all
i: 3, j: 60, search_length: 3, pattern match: 592 592
i: 71, j: 81, search_length: 3, pattern match: 628 628
i: 73, j: 80, search_length: 3, pattern match: 862 862