login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A057680 Self-locating strings within Pi: numbers n such that the string n is at position n in the decimal digits of Pi, where 1 is the first digit. 21

%I #84 Jun 21 2022 22:57:01

%S 1,16470,44899,79873884,711939213,36541622473,45677255610,62644957128,

%T 656430109694

%N Self-locating strings within Pi: numbers n such that the string n is at position n in the decimal digits of Pi, where 1 is the first digit.

%C The average number of matches of length "n" digits is exactly 0.9. That is, we expect 0.9 matches with 1 digit, 0.9 matches with 2 digits, etc. Increasing the number of digits by a factor of 10 means that we expect to find 0.9 new matches. Increasing the search from 10^11 to 10^12 (which includes 10 times as much work) would thus only expect to find 0.9 new matches. - _Alan Eliasen_, May 01 2013 (corrected by _Michael Beight_, Mar 21 2020)

%C Consequently, with the second Borel-Cantelli lemma, the expected number of terms in this sequence is infinite with probability 1. (Of course the sequence is not random, but almost all of the sequences corresponding to randomly-chosen real numbers in place of Pi have infinitely many terms.) - _Charles R Greathouse IV_, Apr 29 2013

%C a(1) & a(5) are the first occurrences in Pi of their respective strings; a(2) & a(4) are the second occurrences; a(3) is the fourth occurrence. - _Hans Havermann_, Jul 27 2014

%C A near-miss '043611' occurs at position 43611. - _S. Alwin Mao_, Feb 18 2020

%C a(10) > 5 * 10^13. - _Kang Seonghoon_, Nov 02 2020

%C Has no terms in common with A037008 (but see Mao comment above). - _Charles R Greathouse IV_, Jun 21 2022

%D Clifford A. Pickover, A Passion for Mathematics, Wiley, 2005; see p. 60.

%H David G. Andersen, <a href="http://www.angio.net/pi/piquery">The Pi-Search Page</a>.

%H Tom Crawford and Brady Haran, <a href="https://www.youtube.com/watch?v=W20aT14t8Pw">Strings and Loops within Pi</a>, Numberphile video (2020).

%H Google, <a href="https://storage.googleapis.com/pi50t/index.html">50 trillion digits of pi</a> (2020).

%e 1 is a term because 1 is the first digit after the decimal point.

%t StringsinPiAfterPoint[m_] := Module[{cc = 10^m + m, sol, aa}, sol = Partition[RealDigits[Pi,10,cc] // First // Rest, m, 1]; Do[aa = FromDigits[sol[[i]]]; If[aa==i, Print[{i, aa}]], {i,Length[sol]}];] (* For example, StringsinPiAfterPoint[5] returns all 5-digit members of the sequence. - _Colin Rose_, Mar 15 2006 *)

%t Do[If[RealDigits[Pi,10,a=i+IntegerLength@i-1,-1][[1,i;;a]]==IntegerDigits@i,Print@i],{i,50000}] (* _Giorgos Kalogeropoulos_, Feb 21 2020 *)

%Y Cf. A000796, A057679, A109513, A064810.

%K nonn,base,more

%O 1,2

%A Mike Keith (domnei(AT)aol.com), Oct 19 2000

%E More terms from _Colin Rose_, Mar 15 2006

%E a(5) from _Nathaniel Johnston_, Nov 12 2010

%E a(6)-a(8) from _Alan Eliasen_, May 01 2013

%E a(9) from _Alan Eliasen_, Jun 06 2013

%E Name clarified by _Kang Seonghoon_, Nov 02 2020

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 18:05 EDT 2024. Contains 371798 sequences. (Running on oeis4.)