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.

A144988 Denominators of an Egyptian fraction for 1/Sqrt[10]=0.316227766...

Original entry on oeis.org

4, 16, 269, 97145, 136932237232, 20673377349936322828115, 3064009179828599322781273131956055066080121287, 26627889885770619250657085299814830308649653035272557146964038816993427725649965746421175612
Offset: 1

Views

Author

Artur Jasinski, Sep 28 2008

Keywords

Crossrefs

Programs

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