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.

A144998 Denominators of an Egyptian fraction for 1/Sqrt[23] = 0.208514414...

Original entry on oeis.org

5, 118, 25102, 3098488794, 14128130137829281462, 485584015670165519973653386760357384912, 314540562973936255020142367073783456663449048259761865641894253491267983125499
Offset: 1

Views

Author

Artur Jasinski, Sep 28 2008

Keywords

Crossrefs

Programs

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