A269996 Denominators of r-Egyptian fraction expansion for sqrt(3) - 1, where r = (1,1/2,1/3,1/4,...)
2, 3, 6, 26, 939, 800567, 626897816036, 732632470241183632257841, 31706715561023122142248280773186018287458544854469, 1666726692230759969765850044548001173784581299264219742879080654883940143766478552206863259848365362
Offset: 1
Examples
sqrt(3) - 1 = 1/2 + 1/(2*3) + 1/(3*6) + ...
Links
- Clark Kimberling, Table of n, a(n) for n = 1..13
- Eric Weisstein's World of Mathematics, Egyptian Fraction
- Index entries for sequences related to Egyptian fractions
Crossrefs
Cf. A269993.
Programs
-
Mathematica
r[k_] := 1/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 = Sqrt[3] - 1; Table[n[x, k], {k, 1, z}]
Comments