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!)
A137663 Triangular sequence of coefficients from a polynomial recursion: p(x,n)=-2 (-(n - 1) + x)*p(x, n - 1) + (-(n + 1) + (n + 2)* x - x^2)p(x, n - 2). 0
1, 0, -2, -3, 0, 3, -12, 14, 2, -4, -57, 90, -28, -10, 5, -384, 666, -306, 0, 30, -6, -3441, 6342, -3419, 368, 213, -70, 7, -38220, 74202, -44886, 7834, 1886, -948, 140, -8, -504111, 1023780, -679176, 155604, 15918, -14652, 2880, -252, 9, -7683576, 16226262, -11611074, 3201728, 55680, -243876, 61670 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
Row sums are: {1, -2, 0, 0, 0, 0, 0, 0, 0, 0, 0}
LINKS
FORMULA
p(x,n)=-2 (-(n - 1) + x)*p[x, n - 1] + (-(n + 1) + (n + 2)* x - x^2)p[x, n - 2]; out_n,m=Coefficients(p(x,n)
EXAMPLE
{1},
{0, -2},
{-3,0, 3},
{-12, 14, 2, -4},
{-57, 90, -28, -10, 5},
{-384, 666, -306, 0,30, -6},
{-3441, 6342, -3419,368, 213, -70, 7},
{-38220, 74202, -44886, 7834, 1886, -948, 140, -8},
{-504111, 1023780, -679176, 155604, 15918, -14652, 2880, -252, 9},
{-7683576, 16226262, -11611074, 3201728, 55680, -243876, 61670, -7224, 420, -10},
{-132759147, 290128956, -221191449, 69967716, -3029890, -4304544, 1374390, -201388, 16005, -660, 11}
MATHEMATICA
Clear[p, x] p[x, 0] = 1; p[x, -1] = 0; p[x_, n_] := p[x, n] = -2 (-(n - 1) + x)*p[x, n - 1] + (-(n + 1) + (n + 2)* x - x^2)p[x, n - 2]; g = Table[ExpandAll[p[x, n]], {n, 0, 10}]; a = Table[ CoefficientList[p[x, n], x], {n, 0, 10}]; Flatten[a]
CROSSREFS
Sequence in context: A216217 A253283 A261719 * A370983 A257740 A161628
KEYWORD
tabl,sign
AUTHOR
Roger L. Bagula, Apr 27 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 April 18 18:20 EDT 2024. Contains 371781 sequences. (Running on oeis4.)