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.

A145000 Denominators of an Egyptian fraction for 1/Sqrt[26] = 0.196116135138...

Original entry on oeis.org

6, 34, 26523, 1562387946, 2711148268367282801, 12495200597418585355327760706720583332, 249241682973403163668428197861526798556923221288701528163601730404432403391
Offset: 1

Views

Author

Artur Jasinski, Sep 28 2008

Keywords

Crossrefs

Programs

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