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.

A016538 Continued fraction for log(21/2).

Original entry on oeis.org

2, 2, 1, 5, 2, 30, 10, 2, 1, 1, 1, 1, 38, 1, 1, 1, 1, 6, 2, 2, 1, 26, 1, 1, 2, 2, 2, 1, 42, 2, 2, 1, 5, 2, 2, 7, 1, 1, 2, 5, 1, 1, 3, 1, 1, 1, 1, 1, 4, 1, 2, 2, 1, 1, 5, 2, 3, 1, 1, 1, 2, 9, 1, 1, 2, 1, 3, 2, 1, 1, 7, 2, 3, 2, 2, 2, 1, 21, 1
Offset: 1

Views

Author

Keywords

Examples

			2.351375257163477687083365858... = 2 + 1/(2 + 1/(1 + 1/(5 + 1/(2 + ...)))). - _Harry J. Smith_, May 26 2009
		

Crossrefs

Cf. A016587 Decimal expansion. - Harry J. Smith, May 26 2009

Programs

  • Mathematica
    ContinuedFraction[Log[21/2],80] (* Harvey P. Dale, Jun 19 2013 *)
  • PARI
    { allocatemem(932245000); default(realprecision, 21000); x=contfrac(log(21/2)); for (n=1, 20000, write("b016538.txt", n, " ", x[n])); } \\ Harry J. Smith, May 26 2009