cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A003821 a(1)=a(2)=1, a(n+1) = (a(n)^6 +1)/a(n-1).

Original entry on oeis.org

1, 1, 2, 65, 37709445313, 44237187584945316063023352626539792098172619389908174093304834
Offset: 1

Views

Author

Waldemar Pompe (pompe(AT)zodiac1.mimuw.edu.pl)

Keywords

Programs

  • 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 *)