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!)
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 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,5
COMMENTS
Row sums are {1, 2, 4, 8, 16, 32, 64, 127, 252, ...}.
LINKS
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

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 03:57 EDT 2024. Contains 371782 sequences. (Running on oeis4.)