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!)
A136452 A129065 with v=x instead of v=1: recursive polynomial coefficient triangle. 0
1, 1, 4, 0, -1, 36, 0, -17, 4, 576, 0, -380, 148, -15, 14400, 0, -11804, 5908, -1015, 56, 518400, 0, -496944, 290928, -65120, 6116, -185, 25401600, 0, -27460656, 17936112, -4733696, 577556, -28385, 204, 1625702400, 0, -1935293184, 1371808128, -405733232, 57923264, -3462648, -6152, 6209 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
Row sums are:
{1, 1, 3, 23, 329, 7545, 253195, 11692735, 710944785, 55043460305,
5286546264275}
LINKS
FORMULA
v=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)
EXAMPLE
{1},
{1},
{4, 0, -1},
{36, 0, -17,4},
{576, 0, -380, 148, -15},
{14400, 0, -11804, 5908, -1015,56},
{518400, 0, -496944, 290928, -65120, 6116, -185},
{25401600, 0, -27460656, 17936112, -4733696, 577556, -28385, 204},
{1625702400, 0, -1935293184, 1371808128, -405733232, 57923264, -3462648, -6152,6209},
{131681894400, 0, -169764367104, 128290843008, -41266969200, 6529719744, -418217336, -12355080, 3024273, -112400},
{13168189440000, 0, -18161573760000, 14454310602240, -4959685865664, 841974673536, -53197348976, -4408319328, 1000552476, -65230280, 1520271}
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 = x; a = Join[{{1}}, Table[CoefficientList[p[n, x], x], {n, 1, 10}]]; Flatten[a]
CROSSREFS
Cf. A129065.
Sequence in context: A259938 A342202 A355997 * A247703 A280639 A350708
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 23 03:30 EDT 2024. Contains 371906 sequences. (Running on oeis4.)