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.

A144992 Denominators of an Egyptian fraction for 1/Sqrt[14] = 0.26726124...

Original entry on oeis.org

4, 58, 50346, 19633448274, 441773737902035099005, 229815189585781074105635265494168676404162, 179445232934099276711775585967008028625880741972428708587351916473125768917384082179
Offset: 1

Views

Author

Artur Jasinski, Sep 28 2008

Keywords

Crossrefs

Programs

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