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.

A280096 Engel expansion of 1/phi to the base Pi.

Original entry on oeis.org

6, 18, 95, 340, 9492, 133706, 1693729, 104107693, 692068995, 3295399249, 61983607042, 294907287147, 3866887203952, 1457331336561977, 13487103824303426, 2733476358186221751, 10531585738509590966, 622459086032261357787, 13355793438644297530372, 210369234254618733763935
Offset: 0

Views

Author

G. C. Greubel, Dec 25 2016

Keywords

Examples

			1/phi = Pi/6 + Pi^2/(6*18) + Pi^3/(6*18*95) + ...
		

Crossrefs

Cf. A232325.

Programs

  • Mathematica
    EngelExp[A_, n_] := Join[Array[Pi &, Floor[A]], First@Transpose@
    NestList[{Ceiling[Pi/Expand[#[[1]] #[[2]] - 1]], Expand[#[[1]] #[[2]] - 1]/Pi} &, {Ceiling[Pi/(A - Floor[A])], (A - Floor[A])/Pi}, n - 1]]; EngelExp[N[2/(1 + Sqrt[5]), 7!], 20]