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”).

A174643
Partial sums of A050536.
1
8, 44, 710, 222821, 24666982037, 304224505147060828973, 46276274758482720007096830321604756046489, 1070746802761292462947634762387664148872052610197552503724569802262354342880260375
OFFSET
0,1
COMMENTS
Partial sums of iterated triangular numbers with seed a(0)=8. None of the values shown are prime, but there is no a priori obstruction to a prime value.
FORMULA
a(n) = Sum_{i=0..n} A050536(i).
EXAMPLE
a(6) = 8 + 36 + 666 + 222111 + 24666759216 = 24666982037.
MAPLE
A050536 := proc(n) if n = 0 then 8; else binomial( procname(n-1)+1, 2) ; end if; end proc: A174643 := proc(n) add(A050536(i), i=0..n) ; end proc: seq(A174643(n), n=0..10) ; # R. J. Mathar, Apr 15 2010
CROSSREFS
Cf. A050536.
Sequence in context: A028565 A366338 A129553 * A181268 A374281 A361490
KEYWORD
easy,nonn
AUTHOR
Jonathan Vos Post, Mar 25 2010
EXTENSIONS
One more term from R. J. Mathar, Apr 15 2010
STATUS
approved