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!)
A226051 Denominators of signed Egyptian fractions with sums converging to Pi. 2
13, 25, 685, 1046508, 3249663242463, 11242879629599233747822858, 296966610697839275946742496484126789076162611540968 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Using the algorithm defined at A226049 with r = Pi and f(n) = 1/n gives r = (Sum_{k=1..13} 1/k) - 1/25 + 1/685 - 1/1046508 + ..., of which the 22nd partial sum differs from Pi by less than 10^(-800). For a guide to related sequences, see A226049.
LINKS
EXAMPLE
1 + 1/2 + ... + 1/12 < Pi < 1 + 1/2 + ... + 1/13, so a(1) = 13.
1 + 1/2 + ... + 1/13 - 1/25 < Pi, so a(2) = 25.
1 + 1/2 + ... + 1/13 - 1/25 + 1/685 > Pi, so a(3) = 685.
MATHEMATICA
$MaxExtraPrecision = Infinity;
nn = 10; f[n_] := 1/n; r = Pi; s = 0; b[1] = NestWhile[# + 1 &, 1, ! (s += f[#]) > r &]; u[1] = Sum[f[n], {n, 1, b[1]}]; c[1] = Floor[1/(u[1] - r)]; v[1] = u[1] - 1/c[1]; n = 1; While[n < nn/2, n++; b[n] = Floor[1/(r - v[n - 1])]; u[n] = v[n - 1] + 1/b[n]; c[n] = Floor[1/(u[n] - r)]; v[n] = u[n] - 1/c[n]]; a = Riffle[Table[b[i], {i, 1, nn/2}], Table[c[i], {i, 1, nn/2}]]
CROSSREFS
Cf. A226049.
Sequence in context: A122003 A123827 A105796 * A238338 A040156 A296752
KEYWORD
nonn
AUTHOR
Clark Kimberling, May 24 2013
STATUS
approved

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 March 29 10:22 EDT 2024. Contains 371268 sequences. (Running on oeis4.)