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

A003821
a(1)=a(2)=1, a(n+1) = (a(n)^6 +1)/a(n-1).
2
1, 1, 2, 65, 37709445313, 44237187584945316063023352626539792098172619389908174093304834
OFFSET
1,3
MAPLE
A003821 := proc(n) option remember; if n <= 2 then 1 else (A003821(n-1)^6+1)/A003821(n-2); fi; end;
MATHEMATICA
RecurrenceTable[{a[1]==a[2]==1, a[n+1]==(a[n]^6+1)/a[n-1]}, a, {n, 6}] (* Harvey P. Dale, Oct 15 2019 *)
CROSSREFS
Sequence in context: A214366 A220596 A326253 * A055765 A265996 A309169
KEYWORD
nonn
AUTHOR
Waldemar Pompe (pompe(AT)zodiac1.mimuw.edu.pl)
STATUS
approved