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.

A161686 Continued fraction for Pi/(3*sqrt(2)).

Original entry on oeis.org

0, 1, 2, 1, 5, 1, 4, 2, 2, 1, 1, 2, 2, 2, 6, 1, 1, 1, 5, 2, 1, 1, 1, 1, 1, 6, 2, 3, 1, 11, 1, 2, 1, 21, 1, 6, 11, 1, 3, 1, 1, 1, 1, 6, 2, 3, 1, 2, 3, 20, 2, 5, 1, 1, 48, 1, 1, 1, 3, 1, 23, 8, 1, 8, 3, 4, 2, 1, 1, 9, 1, 4, 1, 4, 19, 18, 1, 1, 5, 6, 1, 39, 192, 2, 1, 1, 1, 1, 1, 2, 19, 1, 3, 5, 13, 98, 1, 1
Offset: 0

Views

Author

Harry J. Smith, Jun 18 2009

Keywords

Examples

			0.740480489693061041169313498... = 0 + 1/(1 + 1/(2 + 1/(1 + 1/(5 + ...))))
		

Crossrefs

Cf. A093825 Decimal expansion.

Programs

  • Mathematica
    ContinuedFraction[Pi/(3*Sqrt[2]),120] (* Harvey P. Dale, Nov 11 2017 *)
  • PARI
    { allocatemem(932245000); default(realprecision, 21000); x=contfrac(Pi*sqrt(2)/6); for (n=0, 20000, write("b161686.txt", n, " ", x[n+1])); }