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

A174802
Triangular sequence from antidiagonal expansion of: p(x,m) = x*(x + 1)^(m - 1)/(1 - Sum[x^i, {i, 1, m}]).
0
1, 1, 1, 1, 2, 1, 1, 3, 3, 1, 1, 5, 5, 4, 1, 1, 8, 9, 8, 5, 1, 1, 13, 17, 14, 12, 6, 1, 1, 21, 31, 27, 22, 17, 7, 1, 1, 34, 57, 53, 41, 34, 23, 8, 1
OFFSET
1,5
COMMENTS
Row sums are {1, 2, 4, 8, 16, 32, 64, 127, 252, ...}.
FORMULA
p(x,m) = x*(x + 1)^(m - 1)/(1 - Sum[x^i, {i, 1, m}]);
t(n,m) = antidiagonal(expansion(p,x,n))).
EXAMPLE
{1},
{1, 1},
{1, 2, 1},
{1, 3, 3, 1},
{1, 5, 5, 4, 1},
{1, 8, 9, 8, 5, 1},
{1, 13, 17, 14, 12, 6, 1},
{1, 21, 31, 27, 22, 17, 7, 1},
{1, 34, 57, 53, 41, 34, 23, 8, 1}
MATHEMATICA
p[x_, m_] = x*(x + 1)^(m - 1)/(1 - Sum[x^i, {i, 1, m}])
a = Table[Table[SeriesCoefficient[Series[FullSimplify[ExpandAll[ p[x, m]]], {x, 0, 50}], n], {n, 0, 10}], {m, 1, 10}]
Table[Table[a[[m, n - m + 1]], {m, 1, n - 1}], {n, 2, 10}]
Flatten[%]
Table[Sum[a[[m, n - m + 1]], {m, 1, n - 1}], {n, 2, 10}]
CROSSREFS
Sequence in context: A054450 A344610 A337009 * A238346 A053538 A235803
KEYWORD
nonn,tabl,uned
AUTHOR
Roger L. Bagula, Mar 29 2010
STATUS
approved