login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A145729
Partial sums of A052379.
2
0, 8, 80, 664, 5344, 42792, 342384, 2739128, 21913088, 175304776, 1402438288, 11219506392, 89756051232, 718048409960, 5744387279792, 45955098238456, 367640785907776, 2941126287262344, 23529010298098896, 188232082384791320
OFFSET
0,2
FORMULA
a(n) = sum_{i=0..n-1} A052379(i).
a(n) = 8*(8^(n+1)-7*n-8)/49 = 8*A014831(n) = 2*A145730(n). - R. J. Mathar, Oct 21 2008
a(n) = 10*a(n-1)-17*a(n-2)+8*a(n-3). G.f.: -8*x / ((x-1)^2*(8*x-1)). - Colin Barker, Oct 27 2014
MATHEMATICA
lst={}; s=0; Do[s+=(s+=(s+=(s+=n))); AppendTo[lst, s], {n, 0, 5!}]; lst
PROG
(Magma) [8*(8^(n+1)-7*n-8)/49 : n in [0..20]]; // Vincenzo Librandi, Jul 04 2011
(PARI) concat(0, Vec(-8*x/((x-1)^2*(8*x-1)) + O(x^100))) \\ Colin Barker, Oct 27 2014
CROSSREFS
Cf. A052379.
Sequence in context: A043035 A165760 A166157 * A280121 A182604 A320074
KEYWORD
nonn,easy
AUTHOR
EXTENSIONS
Edited by R. J. Mathar, Oct 21 2008
STATUS
approved