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!)
A136453 A129065 with v=n instead of v=1: recursive polynomial coefficient triangle. 0
1, 0, 1, -1, -1, 1, 2, -3, -3, 1, 3, 20, -3, -6, 1, -44, -29, 80, 5, -10, 1, 145, -399, -354, 205, 30, -15, 1, 714, 3583, -1155, -1764, 385, 84, -21, 1, -12103, -4816, 29014, 1148, -5929, 532, 182, -28, 1, 51128, -202887, -163008, 132726, 23940, -15561, 420, 342, -36, 1, 520191, 2267207, -1085949, -1450530 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,7
COMMENTS
Row sums are:
{1, 1, -1, -3, 15, 3, -387, 1827, 8001, -172935, 735399}
LINKS
FORMULA
v=n; p(n, x) = (x + 2*(n - 1)^2 - 2*(v - 1)*(n - 1) - v + 1)*p(n - 1, x) - (n - 1)^2*(n - 1 - v)^2*p(n - 2, x)
EXAMPLE
{1},
{0, 1},
{-1, -1, 1},
{2, -3, -3, 1},
{3, 20, -3, -6, 1},
{-44, -29, 80, 5, -10, 1},
{145, -399, -354,205, 30, -15, 1},
{714, 3583, -1155, -1764, 385, 84, -21, 1},
{-12103, -4816, 29014, 1148, -5929, 532, 182, -28, 1},
{51128, -202887, -163008, 132726, 23940, -15561, 420, 342, -36, 1},
{520191, 2267207, -1085949, -1450530, 397515, 120897, -34083, -390, 585, -45, 1}
MATHEMATICA
Clear[p, v, x, n] p[ -1, x] = 0 ; p[0, x] = 1; p[n_, x_] := p[n, x] = (x + 2*(n - 1)^2 - 2*(v - 1)*(n - 1) - v + 1)*p[n - 1, x] - (n - 1)^2*(n - 1 - v)^2*p[n - 2, x]; v = n; a = Join[{{1}}, Table[CoefficientList[p[n, x], x], {n, 1, 10}]]; Flatten[a]
CROSSREFS
Cf. A129065.
Sequence in context: A279004 A172528 A087074 * A114104 A076780 A324733
KEYWORD
uned,tabl,sign
AUTHOR
Roger L. Bagula, Mar 19 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 24 00:30 EDT 2024. Contains 371917 sequences. (Running on oeis4.)