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.

A006269 A continued cotangent.

Original entry on oeis.org

5, 140, 2744420, 20670535451567121260, 8831921094058107711185956797335984862612406515067837739780
Offset: 0

Views

Author

Keywords

References

  • N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

Programs

  • Mathematica
    a = {}; k = 5; Do[AppendTo[a, k]; k = k^3 + 3 k, {n, 1, 8}]; a (* Artur Jasinski, Oct 03 2008 *)
    Table[Round[(5/2 + Sqrt[29]/2)^(3^(n - 1))], {n, 1, 8}] (* Artur Jasinski, Oct 03 2008 *)
    NestList[#^3+3#&,5,5] (* Harvey P. Dale, Feb 14 2013 *)

Formula

From Artur Jasinski, Oct 03 2008: (Start)
Recurrence: a(n+1)=a(n)^3+3*a(n) and a(0)=5.
a(n) = round((5/2 + sqrt(29)/2)^(3^(n - 1))). (End)