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.

A059182 Engel expansion of log(10) = 2.30259...

Original entry on oeis.org

1, 1, 4, 5, 20, 30, 48, 74, 265, 818, 897, 2027, 5107, 6846, 13049, 236586, 364437, 643493, 1144424, 7294777, 49484843, 51161394, 76008087, 202870914, 391981014, 11731070977, 79069971960, 415100034571, 1212266245583
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. A002392.

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[10], 7!], 50] (* modified by G. C. Greubel, Dec 26 2016 *)