login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A226126 Denominators of signed Egyptian fractions 1/(2+a(n)) with sums converging to sqrt(2). 1

%I #5 May 30 2013 16:58:17

%S 8,65,5856,39703530,1895307350287177,46342142299686404785297514402543,

%T 186913643198872746939347285190966650469716954961536584709363654945

%N Denominators of signed Egyptian fractions 1/(2+a(n)) with sums converging to sqrt(2).

%C The algorithm at A226049, with r = sqrt(2) and f(n) = 1/(n+2), gives a sum that converges to sqrt(2). The 16th partial sum differs from sqrt(2) by less than 10^(-500).

%e Sum of the first 12 signed Egyptian fractions: 1/3 + 1/4 + 1/5 + 1/6 + 1/7 + 1/8 + 1/9 + 1/10 - 1/67 + 1/5858 - 1/39703532 showing denominators (beginning at 10), a(1)+1, a(2)+1, a(3)+1, ...

%t $MaxExtraPrecision = Infinity;

%t z = 9; f[n_] := 1/(n + 2); g[n_] := 1/n - 2; r = Sqrt[2]; s = 0; a[1] = NestWhile[# + 1 &, 1, ! (s += f[#]) > r &]; p = Sum[f[n], {n, 1, a[1]}]; a[2] = Floor[g[p - r]]; a[n_] := Floor[g[((-1)^n) (p - r - Sum[((-1)^k) f[a[k]], {k, 2, n - 1}])]]; Table[a[k], {k, 1, z}]

%t N[p - Sum[((-1)^n)*f[a[n]], {n, 2, z}] - r, 20]

%Y Cf. A226049, A226052, A226125.

%K nonn

%O 1,1

%A _Clark Kimberling_, May 27 2013

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 20:27 EDT 2024. Contains 371916 sequences. (Running on oeis4.)