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!)
A156896 Triangle formed by coefficients of the expansion of p(x, n), where p(x,n) = (1+x-x^3)^(n+1)*Sum_{j >= 0} (j+1)^n*(-x + x^3)^j. 5
1, 1, 1, -1, 0, 1, 1, -4, 1, 4, -2, 0, 1, 1, -11, 11, 10, -22, 3, 11, -3, 0, 1, 1, -26, 66, 0, -131, 78, 62, -78, 6, 26, -4, 0, 1, 1, -57, 302, -245, -547, 905, 74, -901, 342, 292, -228, 10, 57, -5, 0, 1, 1, -120, 1191, -2296, -1191, 7128, -3572, -6648, 7140, 1216, -4749, 1200, 1171, -600, 15, 120, -6, 0, 1 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,8
COMMENTS
Row sums are one.
LINKS
FORMULA
T(n, k) = coefficients of the expansion of p(x, n), where p(x,n) = (1+x-x^3)^(n + 1)*Sum_{j >= 0} (j+1)^n*(-x + x^3)^j.
T(n, 1) = (-1)*A000295(n) for n >= 2.
EXAMPLE
Irregular triangle begins as:
1;
1;
1, -1, 0, 1;
1, -4, 1, 4, -2, 0, 1;
1, -11, 11, 10, -22, 3, 11, -3, 0, 1;
1, -26, 66, 0, -131, 78, 62, -78, 6, 26, -4, 0, 1;
1, -57, 302, -245, -547, 905, 74, -901, 342, 292, -228, 10, 57, -5, 0, 1;
MATHEMATICA
p[x_, n_] = (1+x-x^3)^(n+1)*Sum[(j+1)^n*(-x+x^3)^j, {j, 0, Infinity}];
Table[CoefficientList[p[x, n], x], {n, 0, 10}]//Flatten
PROG
(Sage)
def T(n, k): return ( (1+x-x^3)^(n+1)*sum((j+1)^n*(x^3-x)^j for j in (0..3*n+1)) ).series(x, 3*n+3).list()[k]
flatten([1]+[[T(n, k) for k in (0..3*n-3)] for n in (1..12)]) # G. C. Greubel, Jan 06 2022
CROSSREFS
Sequence in context: A348971 A358821 A297420 * A364711 A002193 A020807
KEYWORD
tabf,sign
AUTHOR
Roger L. Bagula, Feb 17 2009
EXTENSIONS
Edited by G. C. Greubel, Jan 06 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 July 12 06:21 EDT 2024. Contains 374237 sequences. (Running on oeis4.)