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!)
A077472 Greedy powers of (5/8): sum_{n=1..inf} (5/8)^a(n) = 1. 7

%I #10 Mar 30 2012 18:39:11

%S 1,3,5,8,10,13,15,23,26,30,33,36,38,46,48,51,53,57,61,64,66,69,72,76,

%T 78,84,88,93,95,104,106,110,115,117,121,126,129,131,136,138,143,148,

%U 150,152,157,160,164,169,172,175,179,181,185,187,191,196,198,201,203

%N Greedy powers of (5/8): sum_{n=1..inf} (5/8)^a(n) = 1.

%C 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.

%C A heuristic argument suggests that the limit of a(n)/n is m - sum_{n=m..inf} log(1 + x^n)/log(x) = 3.9944918847..., where x=5/8 and m=floor(log(1-x)/log(x))=2. - _Paul D. Hanna_, Nov 16 2002

%F 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=(5/8) and frac(y) = y - floor(y).

%F a(n) seems to be asymptotic to c*n with c around 3.4... - _Benoit Cloitre_

%e a(3)=5 since (5/8) +(5/8)^3 +(5/8)^5 < 1 and (5/8) +(5/8)^3 +(5/8)^4 > 1.

%t s = 0; a = {}; Do[ If[s + (5/8)^n < 1, s = s + (5/8)^n; a = Append[a, n]], {n, 1, 210}]; a

%t heuristiclimit[x_] := (m=Floor[Log[x, 1-x]])+1/24+Log[x, Product[1+x^n, {n, 1, m-1}]/DedekindEta[I Log[x]/-Pi]*DedekindEta[ -I Log[x]/2/Pi]]; N[heuristiclimit[5/8], 20]

%Y Cf. A077468, A077469, A077470, A077471, A077473, A077474, A077475.

%K easy,nonn

%O 1,2

%A _Paul D. Hanna_, Nov 06 2002

%E Edited and extended by _Robert G. Wilson v_, Nov 08 2002. Also extended by _Benoit Cloitre_, Nov 06 2002

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 10 02:43 EDT 2024. Contains 372354 sequences. (Running on oeis4.)