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!)
A248565 Least k such that log(4/3) - sum{1/(h*4^h), h = 1..k} < 1/8^n. 4
1, 2, 3, 5, 6, 7, 9, 10, 11, 13, 14, 16, 17, 19, 20, 21, 23, 24, 26, 27, 29, 30, 32, 33, 35, 36, 38, 39, 41, 42, 43, 45, 46, 48, 49, 51, 52, 54, 55, 57, 58, 60, 61, 63, 64, 66, 67, 69, 70, 72, 73, 75, 76, 78, 79, 81, 82, 84, 85, 86, 88, 89, 91, 92, 94, 95 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
This sequence provides insight into the manner of convergence of sum{1/(h*4^h), h = 1..k} to log(4/3). Since a(n+1) - a(n) is in {1,2} for n >= 1, the sequences A248566 and A248567 partition the positive integers.
REFERENCES
Steven R. Finch, Mathematical Constants, Cambridge University Press, 2003, p. 15.
LINKS
EXAMPLE
Let s(n) = log(4/3) - sum{1/(h*4^h), h = 1..n}. Approximations follow:
n ... s(n) ........ 1/8^n
1 ... 0.037682 ... 0.125
2 ... 0.006432 ... 0.015625
3 ... 0.001223 ... 0.001953
4 ... 0.000247 ... 0.000244
5 ... 0.000051 ... 0.000030
a(4) = 5 because s(5) < 1/8^4 < s(4).
MATHEMATICA
z = 2500; p[k_] := p[k] = Sum[1/(h*4^h), {h, 1, k}];
N[Table[p[k], {k, 1, z/5}], 12];
N[Table[Log[4/3] - p[n], {n, 1, z/5}]];
f[n_] := f[n] = Select[Range[z], Log[4/3] - p[#] < 1/8^n &, 1];
u = Flatten[Table[f[n], {n, 1, z}]] ; (* A248565 *)
Flatten[Position[Differences[u], 1]]; (* A248566 *)
Flatten[Position[Differences[u], 2]]; (* A248567 *)
CROSSREFS
Cf. A083679 (log(4/3)), A248566, A248567, A248559, A248565.
Sequence in context: A023705 A188070 A305847 * A065896 A358215 A099308
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Oct 09 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 May 1 14:59 EDT 2024. Contains 372174 sequences. (Running on oeis4.)