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!)
A004128 a(n) = Sum_{k=1..n} floor(3*n/3^k). 23

%I #55 Sep 08 2022 08:44:32

%S 0,1,2,4,5,6,8,9,10,13,14,15,17,18,19,21,22,23,26,27,28,30,31,32,34,

%T 35,36,40,41,42,44,45,46,48,49,50,53,54,55,57,58,59,61,62,63,66,67,68,

%U 70,71,72,74,75,76,80,81,82,84,85,86,88,89,90,93,94,95,97,98,99,101,102

%N a(n) = Sum_{k=1..n} floor(3*n/3^k).

%C 3-adic valuation of (3n)!; cf. A054861.

%C Denominators of expansion of (1-x)^{-1/3} are 3^a(n). Numerators are in |A067622|.

%D Gary W. Adamson, in "Beyond Measure, A Guided Tour Through Nature, Myth and Number", by Jay Kappraff, World Scientific, 2002, p. 356.

%H T. D. Noe, <a href="/A004128/b004128.txt">Table of n, a(n) for n = 0..1000</a>

%H Vaclav Kotesovec, <a href="/A004128/a004128.jpg">Graph - the asymptotic ratio (100000 terms)</a>

%F a(n) = n + floor(n/3) + floor(n/9) + floor(n/27) + ... = n + a(floor(n/3)) = n + A054861(n) = A054861(3n) = (3*n - A053735(n))/2. - _Henry Bottomley_, May 01 2001

%F a(n) = Sum_{k>=0} floor(n/3^k). a(n) = Sum_{k=0..floor(log_3(n))} floor(n/3^k), n >= 1. - _Hieronymus Fischer_, Aug 14 2007

%F Recurrence: a(n) = n + a(floor(n/3)); a(3n) = 3*n + a(n); a(n*3^m) = 3*n*(3^m-1)/2 + a(n). - _Hieronymus Fischer_, Aug 14 2007

%F a(k*3^m) = k*(3^(m+1)-1)/2, 0 <= k < 3, m >= 0. - _Hieronymus Fischer_, Aug 14 2007

%F Asymptotic behavior: a(n) = (3/2)*n + O(log(n)), a(n+1) - a(n) = O(log(n)); this follows from the inequalities below. - _Hieronymus Fischer_, Aug 14 2007

%F a(n) <= (3n-1)/2; equality holds for powers of 3. - _Hieronymus Fischer_, Aug 14 2007

%F a(n) >= (3n-2)/2 - floor(log_3(n)); equality holds for n = 3^m - 1, m > 0. - _Hieronymus Fischer_, Aug 14 2007

%F Lim inf (3n/2 - a(n)) = 1/2, for n->oo. - _Hieronymus Fischer_, Aug 14 2007

%F Lim sup (3n/2 - log_3(n) - a(n)) = 0, for n->oo. - _Hieronymus Fischer_, Aug 14 2007

%F Lim sup (a(n+1) - a(n) - log_3(n)) = 1, for n->oo. - _Hieronymus Fischer_, Aug 14 2007

%F G.f.: (Sum_{k>=0} x^(3^k)/(1-x^(3^k)))/(1-x). - _Hieronymus Fischer_, Aug 14 2007

%F a(n) = Sum_{k>=0} A030341(n,k)*A003462(k+1). - _Philippe Deléham_, Oct 21 2011

%F a(n) ~ 3*n/2 - log(n)/(2*log(3)). - _Vaclav Kotesovec_, Oct 17 2019

%p A004128 := proc(n)

%p A054861(3*n) ;

%p end proc:

%p seq(A004128(n),n=0..100) ; # _R. J. Mathar_, Nov 04 2017

%t Table[Total[NestWhileList[Floor[#/3] &, n, # > 0 &]], {n, 0, 70}] (* _Birkas Gyorgy_, May 20 2012 *)

%t A004128 = Log[3, CoefficientList[ Series[1/(1+x)^(1/3), {x, 0, 100}], x] // Denominator] (* _Jean-François Alcover_, Feb 19 2015 *)

%t Flatten[{0, Accumulate[Table[IntegerExponent[3*n, 3], {n, 1, 100}]]}] (* _Vaclav Kotesovec_, Oct 17 2019 *)

%o (PARI) {a(n) = my(s, t=1); while(t<=n, s += n\t; t*=3);s}; /*_Michael Somos_, Feb 26 2004 */

%o (Sage)

%o A004128 = lambda n: A004128(n//3) + n if n > 0 else 0

%o [A004128(n) for n in (0..70)] # _Peter Luschny_, Nov 16 2012

%o (Haskell)

%o a004128 n = a004128_list !! (n-1)

%o a004128_list = scanl (+) 0 a051064_list

%o -- _Reinhard Zumkeller_, May 23 2013

%o (Magma) [n + Valuation(Factorial(n), 3): n in [0..70]]; // _Vincenzo Librandi_, Jun 12 2019

%Y Cf. A004117, A001511, A051064, A055457.

%Y A051064(n) = a(n+1) - a(n). - _Alford Arnold_, Jul 19 2000

%Y Cf. A054861, A067080, A098844, A132027, A005187, A054899.

%K nonn

%O 0,3

%A _N. J. A. Sloane_

%E Current definition suggested by _Jason Earls_, Jul 04 2001

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 April 19 21:09 EDT 2024. Contains 371798 sequences. (Running on oeis4.)