OFFSET
0,2
COMMENTS
The next term has 128 digits. - Harvey P. Dale, Sep 13 2011
REFERENCES
Goldstein, Arthur S.; Reingold, Edward M.; A Fibonacci version of Kraft's inequality applied to discrete unimodal search. SIAM J. Comput. 22 (1993), no. 4, 751-777.
N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
MATHEMATICA
NestList[Fibonacci[#+2]&, 1, 6] (* Harvey P. Dale, Sep 13 2011 *)
PROG
(Haskell)
a006985 n = a006985_list !! (n-1)
a006985_list = 1 : map (a000045 . (+ 2)) a006985_list
-- Reinhard Zumkeller, Jul 17 2015
CROSSREFS
KEYWORD
nonn,nice,easy
AUTHOR
STATUS
approved