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!)
A174643 Partial sums of A050536. 1
8, 44, 710, 222821, 24666982037, 304224505147060828973, 46276274758482720007096830321604756046489, 1070746802761292462947634762387664148872052610197552503724569802262354342880260375 (list; graph; refs; listen; history; text; internal format)
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.
LINKS
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

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 September 9 16:40 EDT 2024. Contains 375765 sequences. (Running on oeis4.)