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.

A145001 Denominators of an Egyptian fraction for 1/Sqrt[27] = 0.19245...

Original entry on oeis.org

6, 39, 7023, 123003383, 30009972034709604, 2284252506432349791885755473056239, 9742053754355575036462674739863470880211838469604940624314922115462
Offset: 1

Views

Author

Artur Jasinski, Sep 28 2008

Keywords

Crossrefs

Programs

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