login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A050542 Iterated triangular numbers. 1
5, 15, 120, 7260, 26357430, 347357071281165, 60328467484514345085777519195, 1819761994515052295911016533077539330911500847167185483610 (list; graph; refs; listen; history; internal format)
OFFSET

0,1

FORMULA

a(n)=binomial(a(n-1)+1, 2), a(0)=5

MATHEMATICA

a=5; lst={a}; Do[b=(a+1)*a/2; AppendTo[lst, b]; a=b, {n, 1, 9}]; lst [From Vladimir Orlovsky (4vladimir(AT)gmail.com), Mar 16 2010]

NestList[Binomial[#+1, 2]&, 5, 9] (* From Harvey P. Dale, Sep 24 2011 *)

CROSSREFS

A000217, A007501, A013589.

Sequence in context: A088418 A080490 A173736 * A091096 A116957 A124209

Adjacent sequences:  A050539 A050540 A050541 * A050543 A050544 A050545

KEYWORD

easy,nice,nonn

AUTHOR

Klaus Strassburger (strass(AT)ddfi.uni-duesseldorf.de), Dec 29 1999

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 17 14:50 EST 2012. Contains 206050 sequences.