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.

A110820 Denominator of Egyptian fraction for Euler's constant (or Euler-Mascheroni constant) gamma.

Original entry on oeis.org

2, 13, 3418, 52016149, 153922786652714666, 65688702911858084722486113974627712, 5909264177593573284418890303826221282839645884512542540067398229418573
Offset: 1

Views

Author

Franz Vrabec, Sep 16 2005

Keywords

Examples

			a(3) = ceiling(1/(0.5772156649... - 1/2 - 1/13)) = 3418.
		

Crossrefs

Cf. A001620.

Programs

  • Mathematica
    a = {}; k = N[EulerGamma, 1000]; Do[s = Ceiling[1/k]; AppendTo[a, s]; k = k - 1/s, {n, 1, 10}]; a (* Artur Jasinski, Sep 22 2008 *)

Extensions

a(6)-a(7) from Robert G. Wilson v, Aug 03 2010