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.

A059190 Engel expansion of gamma^2, (gamma is the Euler-Mascheroni constant A001620) = 0.333178.

Original entry on oeis.org

4, 4, 4, 4, 4, 6, 23, 26, 126, 132, 154, 269, 421, 911, 1899, 7335, 14245, 34244, 78354, 173699, 239896, 247397, 659900, 1646344, 2454988, 6831657, 65833355, 839918922, 1187969748, 3583279448, 4114383765, 6590212761, 11304687651
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 Schulmaenner in Marburg, 1913, pp. 190-191.

Crossrefs

Cf. A155969.

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[EulerGamma^2, 7!], 100] (* Modified by G. C. Greubel, Dec 27 2016 *)