login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A248178
Least k such that r - sum{1/F(n), h = 1..k} < 1/2^(n+1), where F(n) = A000045 (Fibonacci numbers) and r = sum{1/F(n), h = 1..infinity}.
1
6, 7, 9, 10, 12, 13, 15, 16, 18, 19, 20, 22, 23, 25, 26, 28, 29, 31, 32, 33, 35, 36, 38, 39, 41, 42, 44, 45, 46, 48, 49, 51, 52, 54, 55, 56, 58, 59, 61, 62, 64, 65, 67, 68, 69, 71, 72, 74, 75, 77, 78, 80, 81, 82, 84, 85, 87, 88, 90, 91, 92, 94, 95, 97, 98
OFFSET
1,1
COMMENTS
This sequence gives a measure of the convergence rate of the sum of reciprocals of Fibonacci numbers. It appears that a(n+1) - a(n) is in {1,2} for n >= 1.
LINKS
EXAMPLE
Let s(n) = sum{1/F(h), h = 1..n}. Approximations are shown here:
n ... r - s(n) .... 1/2^(n+1)
1 ... 2.35989 ..... 0.25
2 ... 1.35989 ..... 0.125
3 ... 0.859886 .... 0.0625
4 ... 0.526552 .... 0.03125
5 ... 0.3265522 ... 0.015625
6 ... 0.201552 .... 0.0078125
a(1) = 6 because r - s(6) < 1/4 < r - s(5).
MATHEMATICA
$MaxExtraPrecision = Infinity;
z = 100; p[k_] := p[k] = Sum[1/Fibonacci[h], {h, 1, k}] ;
r = Sum[1/Fibonacci[h], {h, 1, 1000}]; N[Table[r - p[n], {n, 1, z/10}]]
f[n_] := f[n] = Select[Range[z], r - p[#] < 1/2^(n + 1) &, 1]
u = Flatten[Table[f[n], {n, 1, z}]] (* A248178 *)
CROSSREFS
Sequence in context: A205720 A348465 A102740 * A284094 A120183 A032710
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Oct 03 2014
STATUS
approved