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.

A118323 (Greedy) Egyptian fraction expansion of Catalan constant.

Original entry on oeis.org

2, 3, 13, 176, 36543, 1394774578, 12493702893882521837, 265316559833226727589598741150947701321
Offset: 1

Views

Author

Eric W. Weisstein, Apr 23 2006

Keywords

Examples

			Catalan constant = 1/2 + 1/3 + 1/13 + 1/176 + 1/36543 + ...
		

Crossrefs

Programs

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