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!)
A003819 a(1)=a(2)=1, a(n+1) = (a(n)^4 +1)/a(n-1). 2
1, 1, 2, 17, 41761, 178910008847318626, 24533960352822051755918055684179592096697004630540952679692131057 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
LINKS
MAPLE
A003819 := proc(n) option remember; if n <= 2 then 1 else (A003819(n-1)^4+1)/A003819(n-2); fi; end;
MATHEMATICA
nxt[{a_, b_}]:={b, (b^4+1)/a}; Transpose[NestList[nxt, {1, 1}, 6]][[1]] (* Harvey P. Dale, Jun 21 2015 *)
CROSSREFS
Sequence in context: A002814 A122207 A174305 * A078624 A163319 A269836
KEYWORD
nonn
AUTHOR
Waldemar Pompe (pompe(AT)zodiac1.mimuw.edu.pl)
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 23 20:33 EDT 2024. Contains 371916 sequences. (Running on oeis4.)