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.

A006280 Partial quotients in continued fraction expansion of Cahen's constant.

Original entry on oeis.org

0, 1, 1, 1, 4, 9, 196, 16641, 639988804, 177227652025317609, 72589906463585427805281295977816196, 2280022876287160141646375873338796324543839666085098409289740769448641
Offset: 0

Views

Author

Keywords

Comments

Shifted squares of denominators of convergents to Cahen's constant: a(n) = A006279(n-2)^2 for n > 1. - Jonathan Sondow, Aug 20 2014

References

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

Crossrefs

Programs

  • Mathematica
    b[n_] := b[n] = If[n < 2, 1, b[n-2]^2*b[n-1] + b[n-2]];
    a[n_] := If[n == 0, 0, b[n-2]^2];
    Table[a[n], {n, 0, 10}] (* Jean-François Alcover, Sep 23 2022, after Jonathan Sondow *)