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!)
A218122 a(0)=1, a(1)=1, a(2)=1; thereafter a(n)=a(n-2)^a(n-1)+a(n-3). 3
1, 1, 1, 2, 2, 5, 34, 582076609134674072265627 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
COMMENTS
a(8) has approximately 2.1*10^18 digits.
LINKS
MATHEMATICA
nxt[{a_, b_, c_}]:={b, c, b^c+a}; NestList[nxt, {1, 1, 1}, 7][[All, 1]]//Quiet (* Harvey P. Dale, Mar 13 2019 *)
PROG
(Maxima)
a[0]:1$
a[1]:1$
a[2]:1$
a[n]:=a[n-2]^a[n-1]+a[n-3]$
makelist(a[n], n, 0, 7); /* Martin Ettl, Oct 29 2012 */
CROSSREFS
Sequence in context: A265777 A076658 A218270 * A282706 A301346 A020549
KEYWORD
nonn
AUTHOR
Nico Brown, Oct 24 2012
EXTENSIONS
a(6) and a(7) corrected by Martin Ettl, Oct 29 2012
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 September 15 04:39 EDT 2024. Contains 375931 sequences. (Running on oeis4.)