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.

A144996 Denominators of an Egyptian fraction for 1/Sqrt[21] = 0.21821789...

Original entry on oeis.org

5, 55, 27723, 1084714750, 2579620657453546201, 120904392155429552198250382953194665437, 29567118984689950525496948880094499522270777838300280083816338513462653571335
Offset: 1

Views

Author

Artur Jasinski, Sep 28 2008

Keywords

Crossrefs

Programs

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