[go: up one dir, main page]

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”).

A003820
a(1)=a(2)=1, a(n+1) = (a(n)^5 +1)/a(n-1).
1
1, 1, 2, 33, 19567697, 86932993422012266622767255572927826
OFFSET
1,3
MAPLE
A003820 := proc(n) option remember; if n <= 2 then 1 else (A003820(n-1)^5+1)/A003820(n-2); fi; end;
CROSSREFS
Sequence in context: A034173 A132519 A117969 * A112980 A109336 A180342
KEYWORD
nonn
AUTHOR
Waldemar Pompe (pompe(AT)zodiac1.mimuw.edu.pl)
STATUS
approved