OFFSET
1,1
EXAMPLE
13 is the first Fibonacci with 2 decimal digits. 144 is the first Fibonacci with 3 decimal digits, etc.
MATHEMATICA
Module[{nn=500, fibs}, fibs=Fibonacci[Range[nn]]; Table[SelectFirst[fibs, IntegerLength[ #]==n&], {n, Prime[Range[11]]}]] (* Harvey P. Dale, Dec 16 2018 *)
CROSSREFS
KEYWORD
base,easy,nonn
AUTHOR
Jason Earls, Oct 07 2001
STATUS
approved