OFFSET
1,1
COMMENTS
This appeared on a test: given the first term and the first three digits of the second term, can you identify the sequence?
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 1..1000
Paul Cooijmans, Numbers, Item 19.
Paul Cooijmans, Short Test For Genius, Item 33.
Index entries for linear recurrences with constant coefficients, signature (1,1).
FORMULA
a(n) = A000045(n+22). - Charles R Greathouse IV, Dec 29 2013
MATHEMATICA
f[n_] := Fibonacci[n]; Array[f, 31, 23] (* Robert G. Wilson v, Dec 29 2013 *)
Fibonacci[Range[23, 53]] (* Alonso del Arte, Dec 29 2013 *)
NestList[Round[#*GoldenRatio]&, 28657, 30] (* or *) LinearRecurrence[{1, 1}, {28657, 46368}, 40] (* Harvey P. Dale, Dec 30 2013 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Herman Jamke (hermanjamke(AT)hotmail.com), Sep 21 2006
EXTENSIONS
Edited by N. J. A. Sloane, Dec 29 2013
STATUS
approved