login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A113494
a(0) = 2, a(1) = 3; for n>1, a(n) = a(n-2)^2 + a(n-1)^2.
1
2, 3, 13, 178, 31853, 1014645293, 1029505071621669458, 1059880692494738761409621021617069613, 1123347082323126985848870489739619316533660939418089557571160604297983533
OFFSET
0,1
REFERENCES
Harper's Magazine, Feb 2006, Page 14.
MATHEMATICA
a[1] = 2; a[2] = 3; a[n_] := a[n - 2]^2 + a[n - 1]^2; Array[a, 9] (* Robert G. Wilson v *)
CROSSREFS
Cf. A000283.
Sequence in context: A072162 A113785 A118323 * A139520 A132535 A056806
KEYWORD
nonn,easy
AUTHOR
Michael Hogan (Michael(AT)michaelhogan.com), Jan 10 2006
EXTENSIONS
Corrected and extended by Robert G. Wilson v, Jan 11 2006
STATUS
approved