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.

A144835 Denominators of an Egyptian fraction for 1/zeta(2) = 0.607927101854... (A059956).

Original entry on oeis.org

2, 10, 127, 18838, 522338493, 727608914652776081, 990935377560451600699026552443764271, 1223212384013602554473872691328685513734082755736750146553750539914774364
Offset: 1

Views

Author

Artur Jasinski, Sep 22 2008

Keywords

Examples

			1/zeta(2) = 0.607927101854... = 1/2 + 1/10 + 1/127 + 1/18838 + ...
		

Crossrefs

Programs

  • Mathematica
    a = {}; k = N[1/Zeta[2], 1000]; Do[s = Ceiling[1/k]; AppendTo[a, s]; k = k - 1/s, {n, 1, 10}]; a
  • PARI
    x=1/zeta(2); while(x, t=1\x+1; print1(t", "); x -= 1/t) \\ Charles R Greathouse IV, Nov 08 2013