cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A112980 a(0) = 0, a(1) = 1; for n>=2: a(n) = a(n-1)^5 + a(n-2)^5.

Original entry on oeis.org

0, 1, 1, 2, 33, 39135425, 91801604643057285538237803582627026018
Offset: 0

Views

Author

Jonathan Vos Post, Jan 02 2006

Keywords

Examples

			a(3) = 1^5 + 1^5 = 2.
a(4) = 1^5 + 2^5 = 33.
a(5) = 2^5 + 33^5 = 39135425.
a(6) = 33^5 + 39135425^5 = 91801604643057285538237803582627026018.
		

Crossrefs

Programs

  • Mathematica
    RecurrenceTable[{a[1]==a[2]==1,a[n]==a[n-1]^5+a[n-2]^5},a,{n,7}] (* Harvey P. Dale, May 01 2012 *)

Extensions

a(0)=0 prepended by Alois P. Heinz, Sep 15 2023