The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A076800 Greedy powers of (e/4): sum_{n=1..inf} (e/4)^a(n) = 1. 0
1, 3, 13, 38, 41, 54, 57, 60, 63, 67, 73, 75, 88, 91, 95, 98, 101, 109, 116, 122, 125, 129, 131, 142, 145, 151, 159, 163, 169, 172, 176, 190, 200, 205, 210, 215, 217, 228, 235, 241, 250, 252, 266, 271, 276, 280, 283, 296, 298, 311, 315, 318, 323, 326, 329, 334 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
The n-th greedy power of x, when 0.5 < x < 1, is the smallest integer exponent a(n) that does not cause the power series sum_{k=1..n} x^a(k) to exceed unity.
LINKS
FORMULA
a(n)=sum_{k=1..n}floor(g_k) where g_1=1, g_{n+1}=log_x(x^frac(g_n) - x) (n>0) at x=(e/4) and frac(y) = y - floor(y).
EXAMPLE
a(4)=13 since (e/4) +(e/4)^3 +(e/4)^13 < 1 and (e/4) +(e/4)^3 +(e/4)^12 > 1; since the power 12 makes the sum > 1, then 13 is the 3rd greedy power of (e/4).
MAPLE
Digits := 400: summe := 0.0: p := evalf(exp(1)/4.): pexp := p: a := []: for i from 1 to 800 do: if summe + pexp < 1 then a := [op(a), i]: summe := summe + pexp: fi: pexp := pexp * p: od: a;
CROSSREFS
Sequence in context: A146227 A019007 A147554 * A277411 A054975 A072790
KEYWORD
easy,nonn
AUTHOR
Ulrich Schimke (ulrschimke(AT)aol.com)
EXTENSIONS
Corrected by T. D. Noe, Nov 02 2006
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 21 01:24 EDT 2024. Contains 372720 sequences. (Running on oeis4.)