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.

A161688 Continued fraction for zeta(1/2) (negated).

Original entry on oeis.org

1, 2, 5, 1, 4, 6, 1, 1, 2, 6, 1, 1, 2, 1, 1, 1, 37, 3, 2, 1, 2, 4, 1, 368, 2, 1, 23, 18, 1, 1, 2, 2, 2, 11, 1, 4, 1, 5, 40, 1, 2, 1, 2, 1, 1, 1, 1, 2, 4, 1, 10, 2, 5, 4, 1, 12, 2, 5, 3, 1, 7, 2, 1, 2, 1, 1, 1, 6, 1, 12, 1, 2, 2, 2, 1, 2, 36, 2, 3, 1, 1, 1, 4, 3, 2, 45, 4, 5, 1, 1, 7, 3, 1, 1, 3, 6, 2, 1, 19
Offset: 0

Views

Author

Harry J. Smith, Jun 29 2009

Keywords

Examples

			1.460354508809586812889499152... = 1 + 1/(2 + 1/(5 + 1/(1 + 1/(4 + ...))))
		

Crossrefs

Cf. A059750 Decimal expansion.

Programs

  • PARI
    { allocatemem(932245000); default(realprecision, 5400); x=contfrac(-zeta(1/2)); for (n=0, 5000, write("b161688.txt", n, " ", x[n+1])); }