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.

A144986 Denominators of an Egyptian fraction for 1/Sqrt[7]=0.377964473...

Original entry on oeis.org

3, 23, 868, 1242123, 2776290405248, 11161696107523243223922840, 261638153821481209775970282548980739821715625184617, 189055393361766552088064316219614698328133697744770641431804048878604165927723712902309210241320415402
Offset: 1

Views

Author

Artur Jasinski, Oct 07 2008

Keywords

Crossrefs

Programs

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