OFFSET
1,2
COMMENTS
Look at this array:
...1
...13
....34
.....4181
........10946
............63245986
...................6557470319842
.
.
.
................................34507973060837282187130139035400899082304280
Since no positive Fibonacci number begins with 0, the sequence ends here.
- N. J. A. Sloane, May 02 2016
LINKS
Chai Wah Wu, Table of n, a(n) for n = 1..25
EXAMPLE
Since a(1) = 1, a(2) must start with 1 and so a(2) = 13;
since a(2) = 13, a(3) must start with 3, and so a(3) = 34;
since a(3) = 34, a(4) must start with 4 and the smallest Fibonacci number greater than 34 and beginning with 4 is 4181; ...
MATHEMATICA
F = Fibonacci; L={2}; While[(d = Mod[F[k = Last@L], 10]) > 0, While[ IntegerDigits[ F[++k]][[1]] != d]; AppendTo[L, k]]; F@L (* Giovanni Resta, May 02 2016 *)
CROSSREFS
KEYWORD
nonn,base,fini,full
AUTHOR
José de Jesús Camacho Medina, Apr 13 2016
STATUS
approved