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.

A059200 Engel expansion of -log(log(2)) = 0.36651292... .

Original entry on oeis.org

3, 11, 11, 23, 62, 66, 466, 1450, 7617, 95677, 100963, 153329, 966054, 4744661, 23899231, 25086529, 52363821, 100389201, 201892089, 261170111, 312778184, 527002514, 1235004065, 1623652949, 2309078745, 8274570969
Offset: 1

Views

Author

Keywords

Comments

Cf. A006784 for definition of Engel expansion.

References

  • F. Engel, Entwicklung der Zahlen nach Stammbruechen, Verhandlungen der 52. Versammlung deutscher Philologen und Schulmänner in Marburg, 1913, pp. 190-191.

Crossrefs

Cf. A074785.

Programs

  • Mathematica
    EngelExp[A_, n_] := Join[Array[1 &, Floor[A]], First@Transpose@
    NestList[{Ceiling[1/Expand[#[[1]] #[[2]] - 1]], Expand[#[[1]] #[[2]] - 1]/1} &, {Ceiling[1/(A - Floor[A])], (A - Floor[A])/1}, n - 1]];
    EngelExp[N[-Log[Log[2]], 7!], 100] (* Modified by G. C. Greubel, Dec 28 2016 *)