login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A156136 A triangle of polynomial coefficients related to Mittag-Leffler polynomials: p(x,n)=Sum[Binomial[n, k]*Binomial[n - 1, n - k]*2^k*x^k, {k, 0, n}]/(2*x). 0
1, 2, 2, 3, 12, 4, 4, 36, 48, 8, 5, 80, 240, 160, 16, 6, 150, 800, 1200, 480, 32, 7, 252, 2100, 5600, 5040, 1344, 64, 8, 392, 4704, 19600, 31360, 18816, 3584, 128, 9, 576, 9408, 56448, 141120, 150528, 64512, 9216, 256, 10, 810, 17280, 141120, 508032 (list; table; graph; refs; listen; history; text; internal format)
OFFSET

0,2

COMMENTS

Row sums are:

{1, 4, 19, 96, 501, 2668, 14407, 78592, 432073, 2390004,...}.

I tried this sum because it is a double binomial

like the Narayana numbers of the first kind.

REFERENCES

Steve Roman, The Umbral Calculus, Dover Publications, New York (1984), pp. 75-76

LINKS

Table of n, a(n) for n=0..49.

FORMULA

p(x,n)=Sum[Binomial[n, k]*Binomial[n - 1, n - k]*2^k*x^k, {k, 0, n}]/(2*x);

p(x,n)=n Hypergeometric2F1[1 - n, 1 - n, 2, 2 x];

t(n,m)=coefficiemts(p(x,n))

EXAMPLE

{1},

{2, 2},

{3, 12, 4},

{4, 36, 48, 8},

{5, 80, 240, 160, 16},

{6, 150, 800, 1200, 480, 32},

{7, 252, 2100, 5600, 5040, 1344, 64},

{8, 392, 4704, 19600, 31360, 18816, 3584, 128},

{9, 576, 9408, 56448, 141120, 150528, 64512, 9216, 256},

{10, 810, 17280, 141120, 508032, 846720, 645120, 207360, 23040, 512}

MATHEMATICA

Clear[t0, p, x, n, m];

p[x_, n_] = Sum[Binomial[n, k]*Binomial[n - 1, n - k]*2^k*x^k, {k, 0, n}]/(2*x);

Table[FullSimplify[ExpandAll[p[x, n]]], {n, 1, 10}];

Table[CoefficientList[FullSimplify[ExpandAll[p[x, n]]], x], {n, 1, 10}];

Flatten[%]

CROSSREFS

A142983, A142978

Sequence in context: A143933 A075095 A178343 * A134243 A182779 A199673

Adjacent sequences:  A156133 A156134 A156135 * A156137 A156138 A156139

KEYWORD

nonn,tabl,uned

AUTHOR

Roger L. Bagula, Feb 04 2009

STATUS

approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified May 18 12:06 EDT 2013. Contains 225419 sequences.