login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

Starting positions of strings of three 6's in the decimal expansion of Pi.
1

%I #13 Jan 16 2015 03:49:44

%S 2440,3151,4000,4435,5403,6840,10163,10335,10591,13594,15888,16109,

%T 18504,20231,21880,21881,23057,23511,24566,25948,26212,27703,27841,

%U 29666,29868,29869,32427,32428,33363,36353,38132,40370,40650,43523

%N Starting positions of strings of three 6's in the decimal expansion of Pi.

%H <a href="/index/Ph#Pi314">Index entries for sequences related to the number Pi</a>

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

%H Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/PiDigits.html">Pi Digits.</a>

%t q=9!;z=6;a=RealDigits[Pi,10,q];lst={};Do[b=a[[1]][[n]];c=a[[1]][[n+1]];d=a[[1]][[n+2]];If[b==z&&c==z&&d==z,AppendTo[lst,n-1]],{n,q-2}];lst (* _Vladimir Joseph Stephan Orlovsky_, Jun 19 2009 *)

%Y Cf. A050245 (two 6's), A083626 (four 6's).

%K base,nonn

%O 1,1

%A _Rick L. Shepherd_, May 03 2003