OFFSET
0,1
LINKS
T. D. Noe, Table of n, a(n) for n = 0..10000
Eric Weisstein's World of Mathematics, Constant Digit Scanning
Eric Weisstein's World of Mathematics, Golden Ratio Digits
EXAMPLE
The first 0 is in the 5th position of the digits of Phi, so 5 is the first entry in the sequence.
MATHEMATICA
With[{phistr = StringDrop[ToString[N[GoldenRatio, 1000]], {2, 2}]}, Table[ StringPosition[phistr, ToString[n], 1][[1, 1]], {n, 0, 70}]] (* Harvey P. Dale, Sep 17 2011 *)
PROG
(PARI) trajphidigitsd(n, m) = { default(realprecision, 6000); p = (sqrt(5)+1)/2*10^5000; v = Vec(Str(p)); for(d=0, m, for(x=1, n, if(d<10, y = eval(v[x]), if(d<100, y = eval(v[x])*10 + eval(v[x+1]), if(d<1000, y = eval(v[x])*100 + eval(v[x+1])*10 + eval(v[x+2]), y = eval(v[x])*1000 + eval(v[x+1])*100 + eval(v[x+2])*10 + eval(v[x+3]) ); ); ); if(y == d, print1(x", "); break); ); ) }
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Cino Hilliard, Nov 19 2003
STATUS
approved