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!)
A248562 Least k such that log(3/2) - sum{1/(h*3^h), h = 1..k} < 1/6^n. 5
1, 2, 3, 5, 6, 8, 9, 11, 12, 14, 15, 17, 18, 20, 22, 23, 25, 26, 28, 29, 31, 33, 34, 36, 37, 39, 41, 42, 44, 45, 47, 49, 50, 52, 53, 55, 57, 58, 60, 61, 63, 65, 66, 68, 69, 71, 73, 74, 76, 77, 79, 81, 82, 84, 86, 87, 89, 90, 92, 94, 95, 97, 98, 100, 102, 103 (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*3^h), h = 1..k} to log(3/2). Since a(n+1) - a(n) is in {1,2} for n >= 1, the sequences A248563 and A248564 partition the positive integers.
REFERENCES
Steven R. Finch, Mathematical Constants, Cambridge University Press, 2003, p. 15.
LINKS
EXAMPLE
Let s(n) = log(3/2) - sum{1/(h*3^h), h = 1..n}. Approximations follow:
n ... s(n) ........ 1/6^n
1 ... 0.0721318 ... 0.166667
2 ... 0.0165762 ... 0.0277777
3 ... 0.0042305 ... 0.0046296
4 ... 0.0011441 ... 0.0007716
5 ... 0.0003210 ... 0.0001286
a(4) = 5 because s(5) < 1/6^4 < s(4).
MATHEMATICA
z = 300; p[k_] := p[k] = Sum[1/(h*3^h), {h, 1, k}];
N[Table[Log[3/2] - p[n], {n, 1, z/5}]]
f[n_] := f[n] = Select[Range[z], Log[3/2] - p[#] < 1/6^n &, 1];
u = Flatten[Table[f[n], {n, 1, z}]] (* A248562 *)
Flatten[Position[Differences[u], 1]] (* A248563 *)
Flatten[Position[Differences[u], 2]] (* A248564 *)
CROSSREFS
Cf. A016578 (log(3/2)), A248563, A248564, A248559, A248565.
Sequence in context: A258575 A052490 A332076 * A117672 A194383 A186326
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 March 28 07:18 EDT 2024. Contains 371235 sequences. (Running on oeis4.)