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.

A145002 Denominators of an Egyptian fraction for 1/Sqrt[28] = 0.1889822365...

Original entry on oeis.org

6, 45, 10713, 324564970, 180179551708668257, 66100039883449216745724149409859980, 5970964373869392740489950614747811004676487208587055130790649750452409
Offset: 1

Views

Author

Artur Jasinski, Sep 28 2008

Keywords

Crossrefs

Programs

  • Mathematica
    a = {}; k = N[1/Sqrt[28], 1000]; Do[s = Ceiling[1/k]; AppendTo[a, s]; k = k - 1/s, {n, 1, 10}]; a (*Artur Jasinski*)