login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A112980 a(0) = 0, a(1) = 1; for n>=2: a(n) = a(n-1)^5 + a(n-2)^5. 0
0, 1, 1, 2, 33, 39135425, 91801604643057285538237803582627026018 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
COMMENTS
A quintic Fibonacci sequence.
This is the quintic analog of the Fibonacci sequence similarly to A000283 being the quadratic analog of the Fibonacci sequence. In base 10, n^5 has the same rightmost digit as n. a(7) has 190 digits.
LINKS
Eric Weisstein's World of Mathematics, Quintic Equation.
EXAMPLE
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.
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 *)
CROSSREFS
Sequence in context: A132519 A117969 A003820 * A109336 A180342 A343905
KEYWORD
easy,nonn
AUTHOR
Jonathan Vos Post, Jan 02 2006
EXTENSIONS
a(0)=0 prepended by Alois P. Heinz, Sep 15 2023
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 07:53 EDT 2024. Contains 371964 sequences. (Running on oeis4.)