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!)
A140236 a(n) = A000292(A000292(n)). 7
0, 1, 20, 220, 1540, 7770, 30856, 102340, 295240, 762355, 1798940, 3939936, 8104460, 15803060, 29426320, 52636760, 90889616, 152112005, 247574180, 392991060, 609896980, 927341646, 1383960600, 2030479100, 2932714200, 4175145975, 5865135276, 8137872120 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
Index entries for linear recurrences with constant coefficients, signature (10,-45,120,-210,252,-210,120,-45,10,-1).
FORMULA
a(n) = (n*(1 + n)*(2 + n)*(3 + n)*(2 + n^2)*(12 + n*(1 + n)*(2 + n)))/1296.
G.f.: x*(1+10*x+65*x^2+120*x^3+80*x^4+4*x^5)/(1-x)^10. - Colin Barker, Apr 30 2012.
MAPLE
a:= (n-> binomial(n+2, 3))@@2:
seq(a(n), n=0..29); # Alois P. Heinz, Mar 11 2024
MATHEMATICA
Table[(n (1 + n) (2 + n) (3 + n) (2 + n^2) (12 + n (1 + n) (2 + n)))/1296, {n, 0, 20}]
PROG
(PARI) b(n)=n*(n+1)*(n+2)/6;
a(n)=b(b(n));
vector(25, n, a(n-1)) \\ Joerg Arndt, Mar 11 2024
CROSSREFS
Row n=3 of A331436.
Cf. A000292.
Sequence in context: A229575 A125408 A213351 * A341371 A004411 A140354
KEYWORD
nonn,easy
AUTHOR
Artur Jasinski, May 14 2008
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 March 28 10:55 EDT 2024. Contains 371241 sequences. (Running on oeis4.)