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!)
A050548 Iterated triangular numbers with seed 7. 9
7, 28, 406, 82621, 3413156131, 5824817388998022646, 16964248807586870937449001943463431981, 143892868802856286225154411591351342616163027795335641150249224655238508171 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
a(8) has 149 digits. - Harvey P. Dale, May 08 2011
LINKS
FORMULA
a(n) = binomial(a(n-1)+1, 2), a(0)=7.
a(n) ~ 2 * c^(2^n), where c = 3.77579046114281148578572146955902030830005575599864345238... . - Vaclav Kotesovec, Dec 17 2014
MATHEMATICA
NestList[Binomial[#+1, 2]&, 7, 10] (* Harvey P. Dale, May 08 2011 *)
t = {7}; Do[AppendTo[t, t[[-1]]*(1 + t[[-1]])/2], {9}] (* T. D. Noe, Mar 03 2014 *)
PROG
(PARI) a(n)=my(k=7); for(i=1, n, k=binomial(k+1, 2)); k \\ Charles R Greathouse IV, Mar 03 2014
(Haskell)
a050548 n = a050548_list !! n
a050548_list = iterate a000217 7
(Python)
from itertools import accumulate
def f(an, _): return an*(an+1)//2
print(list(accumulate([7]*11, f))) # Michael S. Branicky, Jul 28 2021
CROSSREFS
Sequence in context: A244300 A203209 A193288 * A261845 A181942 A140447
KEYWORD
nonn,easy,nice
AUTHOR
Klaus Strassburger (strass(AT)ddfi.uni-duesseldorf.de), Dec 29 1999
EXTENSIONS
a(7) provided by Harvey P. Dale, May 08 2011
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 18 04:56 EDT 2024. Contains 371767 sequences. (Running on oeis4.)