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.

A016733 Continued fraction for log(5).

Original entry on oeis.org

1, 1, 1, 1, 1, 3, 1, 1, 1, 3, 4, 6, 94, 1, 3, 4, 40, 1, 5, 2, 2, 1, 1, 7, 7, 8, 39, 4, 3, 4, 1, 9, 1, 1, 2, 1, 7, 1, 6, 2, 18, 1, 1, 1, 12, 1, 1, 3, 1, 1, 4, 16, 16, 3, 3, 2, 1, 17, 1, 8, 1, 20, 1, 15, 15, 10, 2, 13, 1, 1, 34, 1, 32, 25
Offset: 0

Views

Author

Keywords

Examples

			1.609437912434100374600759333... = 1 + 1/(1 + 1/(1 + 1/(1 + 1/(1 + ...)))). - _Harry J. Smith_, May 16 2009
		

Crossrefs

Cf. A016628 (decimal expansion). - Harry J. Smith, May 16 2009

Programs

  • Magma
    ContinuedFraction(Log(5)); // G. C. Greubel, Sep 15 2018
  • Mathematica
    ContinuedFraction[Log[5],100] (* Harvey P. Dale, Apr 02 2015 *)
  • PARI
    { default(realprecision, 21000); x=contfrac(log(5)); for (n=1, 20000, write("b016733.txt", n - 1, " ", x[n])); } \\ Harry J. Smith, May 16 2009