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

A050909
Iterated triangular numbers with seed 9.
10
9, 45, 1035, 536130, 143717956515, 10327425512495574450870, 53327858858072239299138189326373798809103885
OFFSET
0,1
LINKS
Reinhard Zumkeller, Table of n, a(n) for n = 0..10
FORMULA
a(n) = binomial(a(n-1)+1, 2), a(0)=9.
a(n) ~ 2 * c^(2^n), where c = 4.770128350983276481977311510917830191429308415174884373259... . - Vaclav Kotesovec, Dec 17 2014
MATHEMATICA
NestList[Binomial[#+1, 2]&, 9, 10] (* Harvey P. Dale, Oct 12 2011 *)
PROG
(Haskell)
a050909 n = a050909_list !! n
a050909_list = iterate a000217 9 -- Reinhard Zumkeller, Apr 10 2014
(PARI) a(n)=if(n, binomial(a(n-1)+1, 2), 9) \\ Charles R Greathouse IV, Feb 07 2017
CROSSREFS
KEYWORD
easy,nice,nonn
AUTHOR
Klaus Strassburger (strass(AT)ddfi.uni-duesseldorf.de), Dec 29 1999
STATUS
approved