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.

A145189 Continued cotangent recurrence a(n+1)=a(n)^3+3*a(n) and a(1)=15.

Original entry on oeis.org

15, 3420, 40001698260, 64008151994095341241755497070780, 262244184463346778261182615794616508638576477409715732397097802610370956164308073990185129764340
Offset: 1

Views

Author

Artur Jasinski, Oct 03 2008

Keywords

Comments

General formula for continued cotangent recurrences type:
a(n+1)=a(n)3+3*a(n) and a(1)=k is following:
a(n)=Floor[((k+Sqrt[k^2+4])/2)^(3^(n-1))]
k=1 see A006267
k=2 see A006266
k=3 see A006268
k=4 see A006267(n+1)
k=5 see A006269
k=6 see A145180
k=7 see A145181
k=8 see A145182
k=9 see A145183
k=10 see A145184
k=11 see A145185
k=12 see A145186
k=13 see A145187
k=14 see A145188
k=15 see A145189

Crossrefs

Programs

  • Mathematica
    a = {}; k = 15; Do[AppendTo[a, k]; k = k^3 + 3 k, {n, 1, 6}]; a
    or
    Table[Floor[((15 + Sqrt[229])/2)^(3^(n - 1))], {n, 1, 5}] (*Artur Jasinski*)
    NestList[#^3+3#&,15,5] (* Harvey P. Dale, Aug 20 2017 *)

Formula

a(n+1)=a(n)3+3*a(n) and a(1)=14
a(n)=Floor[((14+Sqrt[14^2+4])/2)^(3^(n-1))]