OFFSET
4,1
COMMENTS
If n > 4, 1 < a(n)/10^(n-1) < phi. Successive records are at n = 5, 6, 7, 8, 13, 18, 32, 46, 60, 74, 181, 14807, 29433, 44059, 58685, 1223375, .... - Charles R Greathouse IV, Jan 20 2016
LINKS
Brady Haran and Matt Parker, Brady Numbers, Numberphile video (2014)
PROG
(PARI) A247698(n)=([1, 1; 1, 0]^n*[1953; 355])[1, 1]
a(n)=if(n<5, return(2308)); my(k=log(10^n/15720)\log((1+sqrt(5))/2), t); while(#Str(t=A247698(k))<n, k++); t \\ Charles R Greathouse IV, Jan 20 2016
CROSSREFS
KEYWORD
nonn,base,easy
AUTHOR
Tim Duffy, Sep 24 2014
STATUS
approved