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.

A054543 Engel series expansion (or "Egyptian product") for Catalan's constant G.

Original entry on oeis.org

2, 2, 2, 4, 4, 5, 5, 12, 13, 41, 110, 172, 248, 309, 3146, 5919, 21959, 22299, 30892, 401838, 1719239, 30576561, 262313756, 630913752, 3242181301, 3250783944, 13827502849, 40152067840, 137791590233, 2514510232695, 3217773878849
Offset: 1

Views

Author

Jeppe Stig Nielsen, Apr 09 2000

Keywords

References

  • S. R. Finch, Mathematical Constants, Cambridge, 2003, pp. 53-59.

Crossrefs

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[Catalan,7! ],50] (* Vladimir Joseph Stephan Orlovsky, Jun 08 2009 *)