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.

A157718 Greedy Egyptian fraction expansion of log(3).

Original entry on oeis.org

1, 11, 130, 91827, 42593758221, 2068726045016880942060, 20697114911379630588051784011292634933847536, 832769470129253476302780470023395858447487389073547955500158020204885523374048803963217
Offset: 0

Views

Author

Jaume Oliver Lafont, Mar 04 2009

Keywords

Examples

			log(3) = Sum_{n>=0} 1/a(n) = 1/1 + 1/11 + 1/130 + 1/91827 + 1/42593758221 + ...
		

Crossrefs

Programs

  • PARI
    x=log(3); for (k=1, 8, d=ceil(1/x); x=x-1/d; print(d,","))