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!)
A050909 Iterated triangular numbers with seed 9. 10
9, 45, 1035, 536130, 143717956515, 10327425512495574450870, 53327858858072239299138189326373798809103885 (list; graph; refs; listen; history; text; internal format)
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
Sequence in context: A355175 A352398 A261847 * A333306 A230062 A224851
KEYWORD
easy,nice,nonn
AUTHOR
Klaus Strassburger (strass(AT)ddfi.uni-duesseldorf.de), Dec 29 1999
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 April 19 09:23 EDT 2024. Contains 371782 sequences. (Running on oeis4.)