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.

Showing 1-1 of 1 results.

A278765 Engel expansion of natural logarithm of golden ratio.

Original entry on oeis.org

3, 3, 4, 4, 4, 6, 15, 48, 118, 147, 671, 1026, 3075, 44641, 48364, 1868380, 75080506, 96848501, 911582093, 2511879981, 8700005050, 15888441652, 108526838262, 446779835336, 632466801279, 1084794852728, 1184722346307, 1657692322844, 12376968750845, 17341469111712, 27996895637798, 38935285631573
Offset: 1

Views

Author

Ilya Gutkovskiy, Nov 28 2016

Keywords

Examples

			log(phi)  = 0.4812118250596... = 1/3 + 1/(3*3) + 1/(3*3*4) + 1/(3*3*4*4) + 1/(3*3*4*4*4) + 1/(3*3*4*4*4*6) + ...
		

Crossrefs

Cf. A006784 (for definition of Engel expansion).

Programs

  • Mathematica
    EngelExp[A_, n_]:=Join[Array[1&, Floor[A]], First@Transpose@NestList[{Ceiling[1/Expand[ #[[1]]#[[2]]-1]], Expand[ #[[1]]#[[2]]-1]}&, {Ceiling[1/(A-Floor[A])], A-Floor[A]}, n-1]]; EngelExp[N[Log[GoldenRatio], 7! ], 40]
Showing 1-1 of 1 results.