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!)
A156901 Triangle formed by coefficients of the expansion of p(x, n), where p(x,n) = (1 + 2*x - x^2)^(n + 1)*Sum_{j >= 0} (j+1)^n*(-2*x + x^2)^j. 5
1, 1, 1, -2, 1, 1, -8, 8, -4, 1, 1, -22, 55, -52, 23, -6, 1, 1, -52, 290, -472, 394, -188, 50, -8, 1, 1, -114, 1265, -3624, 4838, -3668, 1750, -536, 97, -10, 1, 1, -240, 4884, -24092, 49239, -56448, 40664, -19320, 6231, -1360, 180, -12, 1, 1, -494, 17419, -142124, 441625, -730898, 749723, -515944, 247067, -83122, 19673, -3244, 331, -14, 1 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
T(n, k) = coefficients of the expansion of p(x, n), where p(x,n) = (1 + 2*x - x^2)^(n + 1)*Sum_{j >= 0} (j+1)^n*(-2*x + x^2)^j.
T(n, 1) = (-1)*A005803(n) for n >= 2.
EXAMPLE
Irregular triangle begins as:
1;
1;
1, -2, 1;
1, -8, 8, -4, 1;
1, -22, 55, -52, 23, -6, 1;
1, -52, 290, -472, 394, -188, 50, -8, 1;
1, -114, 1265, -3624, 4838, -3668, 1750, -536, 97, -10, 1;
1, -240, 4884, -24092, 49239, -56448, 40664, -19320, 6231, -1360, 180, -12, 1;
MATHEMATICA
p[x_, n_]= (1+2*x-x^2)^(n+1)*Sum[(k+1)^n*(-2*x+x^2)^k, {k, 0, Infinity}];
Table[CoefficientList[p[x, n], x], {n, 0, 10}]//Flatten
PROG
(Sage)
def T(n, k): return ( (1+2*x-x^2)^(n+1)*sum((j+1)^n*(x^2-2*x)^j for j in (0..2*n+1)) ).series(x, 2*n+2).list()[k]
flatten([1]+[[T(n, k) for k in (0..2*n-2)] for n in (1..12)]) # G. C. Greubel, Jan 07 2022
CROSSREFS
Sequence in context: A051428 A176698 A129276 * A167400 A225848 A165889
KEYWORD
sign,tabf
AUTHOR
Roger L. Bagula, Feb 17 2009
EXTENSIONS
Edited by G. C. Greubel, Jan 07 2022
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 21:09 EDT 2024. Contains 371798 sequences. (Running on oeis4.)