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!)
A006280 Partial quotients in continued fraction expansion of Cahen's constant.
(Formerly M3372)
6
0, 1, 1, 1, 4, 9, 196, 16641, 639988804, 177227652025317609, 72589906463585427805281295977816196, 2280022876287160141646375873338796324543839666085098409289740769448641 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,5
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).
LINKS
J. L. Davison and Jeffrey O. Shallit, Continued Fractions for Some Alternating Series, Monatshefte für Mathematik, Vol. 111 (1991), pp. 119-126; alternative link.
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 *)
CROSSREFS
Sequence in context: A354305 A080438 A029999 * A290158 A202463 A286322
KEYWORD
nonn,easy
AUTHOR
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 May 6 16:24 EDT 2024. Contains 372296 sequences. (Running on oeis4.)