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.

A033089 Incrementally largest terms in the continued fraction for Pi.

Original entry on oeis.org

3, 7, 15, 292, 436, 20776, 78629, 179136, 528210, 12996958, 878783625, 5408240597, 5916686112, 9448623833, 9787547328, 52662113289
Offset: 1

Views

Author

Keywords

Comments

There is no larger term in the first 15000000000 terms of the c.f. - Eric W. Weisstein, Jul 27 2013
There is no larger term in the first 30000000000 terms of the c.f. - Syed Fahad, Apr 27 2021

Crossrefs

Apart from initial term, same as A007541.
Cf. A033090 (indices), A000796, A001203.

Programs

  • Mathematica
    c = ContinuedFraction[ Pi, 10^7 ]; a = 0; i = 1; Do[ While[ c[ [ i ] ] <= a, i++ ]; a = c[ [ i ] ]; Print[ a ], {n, 1, 11} ]

Extensions

Checked by Hans Havermann, Aug 07 2010
a(12) from Eric W. Weisstein, Dec 08 2010
a(13) from Eric W. Weisstein, Sep 16 2011
a(14) from Eric W. Weisstein, Sep 17 2011
a(15) from Eric W. Weisstein, Jul 18 2013
a(16) from Syed Fahad, Apr 27 2021