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

A187002
Triangle T(n,m): column m is the expansion of (x+2*x^2+3*x^3+3*x^4+2*x^5+x^6)^m
0
1, 2, 1, 3, 4, 1, 3, 10, 6, 1, 2, 18, 21, 8, 1, 1, 25, 53, 36, 10, 1, 0, 28, 105, 116, 55, 12, 1, 0, 25, 171, 294, 215, 78, 14, 1, 0, 18, 234, 616, 660, 358, 105, 16, 1, 0, 10, 273, 1098, 1677, 1287, 553, 136, 18, 1, 0, 4, 273, 1696, 3640, 3828, 2275, 808, 171, 20, 1, 0, 1, 234, 2297, 6890, 9739, 7735, 3740, 1131, 210, 22, 1
OFFSET
1,2
LINKS
Vladimir Kruchinin, Composition of ordinary generating functions, arXiv:1009.2565 [math.CO], 2010.
FORMULA
T(n,m) := sum(k=m..n, binomial(m,k-m) * sum(j=0..k, binomial(k,j) * binomial(j,n-3*k+2*j))).
EXAMPLE
1,
2,1,
3,4,1,
3,10,6,1,
2,18,21,8,1,
1,25,53,36,10,1,
0,28,105,116,55,12,1,
0,25,171,294,215,78,14,1
PROG
(Maxima) T(n, m) := sum(binomial(m, k-m) * sum(binomial(k, j) * binomial(j, n-3*k+2*j), j, 0, k), k, m, n);
CROSSREFS
Sequence in context: A135086 A210561 A210549 * A177226 A059026 A233529
KEYWORD
nonn,tabl
AUTHOR
Vladimir Kruchinin, Mar 01 2011
STATUS
approved