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.

A270355 Denominators of r-Egyptian fraction expansion for e - 2, where r = (1, 1/2, 1/4, 1/8, ...)

Original entry on oeis.org

2, 3, 5, 78, 4962, 15925310, 303532967750376, 72884922416996896007616951849, 3238110775186648021853203185875679911508503009261997468560, 7716186732679740909751872277405382774000613384297298421745471878603639986756704754013029661605882827711280194233739
Offset: 1

Views

Author

Clark Kimberling, Mar 17 2016

Keywords

Comments

Suppose that r is a sequence of rational numbers r(k) <= 1 for k >= 1, and that x is an irrational number in (0,1). Let f(0) = x, n(k) = floor(r(k)/f(k-1)), and f(k) = f(k-1) - r(k)/n(k). Then x = r(1)/n(1) + r(2)/n(2) + r(3)/n(3) + ..., the r-Egyptian fraction for x.
See A269993 for a guide to related sequences.

Examples

			1/e = 1/2 + 1/(2*3) + 1/(4*5) + ...
		

Crossrefs

Cf. A269993.

Programs

  • Mathematica
    r[k_] := 2/2^k; f[x_, 0] = x; z = 10;
    n[x_, k_] := n[x, k] = Ceiling[r[k]/f[x, k - 1]]
    f[x_, k_] := f[x, k] = f[x, k - 1] - r[k]/n[x, k]
    x = E - 2; Table[n[x, k], {k, 1, z}]
  • PARI
    r(k) = 2/2^k;
    f(k,x) = if (k==0, x, f(k-1, x) - r(k)/a(k, x););
    a(k, x=exp(1)-2) = ceil(r(k)/f(k-1, x));