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.

A144987 Denominators of an Egyptian fraction for 1/sqrt(8) = 0.35355339059327376223...

Original entry on oeis.org

3, 50, 4545, 28362567, 1497340447522680, 4387088233067304774404776830059, 21181904263756953142587802868501086598875135541314844201016311, 850362874661071143418760124561686027269498941223459043945221634054718647025769989728300760240990642339926562157579631197188
Offset: 1

Views

Author

Artur Jasinski, Sep 28 2008

Keywords

Crossrefs

Programs

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