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!)
A248180 Least k such that r - sum{1/C(2h+1,h), h = 0..k} < 1/2^n, where r = (2/27)*(9 + 2*sqrt(3)*Pi). 4
1, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 10, 10, 11, 11, 12, 12, 13, 13, 14, 14, 15, 15, 16, 16, 17, 17, 18, 18, 19, 19, 20, 20, 21, 21, 22, 22, 23, 23, 24, 24, 25, 25, 26, 26, 27, 27, 28, 28, 29, 29, 30, 30, 31, 31, 32, 32, 33, 33, 34, 34, 35 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
COMMENTS
This sequence gives a measure of the convergence rate of sum{1/C(2h+1,h), h = 0..k}. Since a(n+1) - a(n) is in {0,1} for n >= 0, the sequences A248195 and A248196 partition the positive integers.
LINKS
EXAMPLE
Let s(n) = sum{1/C(2h+1,h), h = 0..n}. Approximations are shown here:
n ... r - s(n) ..... 1/2^n
0 ... 0.47289 ...... 1
1 ... 0.139466 ..... 0.5
2 ... 0.0394664 .... 0.25
3 ... 0.010895 ..... 0.125
4 ... 0.00295845 ... 0.0625
a(3) = 2 because r - s(2) < 1/8 < r - s(1).
MATHEMATICA
$MaxExtraPrecision = Infinity;
z = 300; p[k_] := p[k] = Sum[1/Binomial[2 h + 1, h], {h, 0, k}] ;
r = Sum[1/Binomial[2 h + 1, h], {h, 0, Infinity}] (* A248179 *)
r = 2/27 (9 + 2 Sqrt[3] \[Pi]); N[r, 20]
N[Table[r - p[n], {n, 0, z/10}]]
f[n_] := f[n] = Select[Range[z], r - p[#] < 1/2^n &, 1]
u = Flatten[Table[f[n], {n, 0, z}]] (* A248180 *)
Flatten[Position[Differences[u], 0]] (* A248195 *)
Flatten[Position[Differences[u], 1]] (* A248196 *)
CROSSREFS
Sequence in context: A025162 A330027 A373074 * A025161 A373068 A350893
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Oct 03 2014
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 August 12 01:38 EDT 2024. Contains 375082 sequences. (Running on oeis4.)