The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A003821 a(1)=a(2)=1, a(n+1) = (a(n)^6 +1)/a(n-1). 2
1, 1, 2, 65, 37709445313, 44237187584945316063023352626539792098172619389908174093304834 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
LINKS
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

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 June 9 04:57 EDT 2024. Contains 373227 sequences. (Running on oeis4.)