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!)
A156985 Triangle formed by coefficients of the expansion of p(x,n) = (1-x)^(2*n + 1)*Sum_{j >= 0} (1 +j +j^2)^n * x^j. 1
1, 1, 0, 1, 1, 4, 14, 4, 1, 1, 20, 175, 328, 175, 20, 1, 1, 72, 1708, 9784, 17190, 9784, 1708, 72, 1, 1, 232, 14189, 199616, 884498, 1431728, 884498, 199616, 14189, 232, 1, 1, 716, 108250, 3353948, 31986447, 115907544, 176287788, 115907544, 31986447, 3353948, 108250, 716, 1 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,6
LINKS
FORMULA
T(n, k) = coefficients of the expansion of p(x, n), where p(x,n) = (1-x)^(2*n + 1)*Sum_{j >= 0} (1 +j +j^2)^n * x^j.
Sum_{k=0..2*n} T(n, k) = A010050(n).
EXAMPLE
Irregular triangle begins as:
1;
1, 0, 1;
1, 4, 14, 4, 1;
1, 20, 175, 328, 175, 20, 1;
1, 72, 1708, 9784, 17190, 9784, 1708, 72, 1;
1, 232, 14189, 199616, 884498, 1431728, 884498, 199616, 14189, 232, 1;
MATHEMATICA
p[x_, n_] = (1-x)^(2*n+1)*Sum[(1+k+k^2)^n*x^k, {k, 0, Infinity}];
Table[CoefficientList[p[x, n], x], {n, 0, 10}]//Flatten
PROG
(Sage)
def T(n, k): return ( (1-x)^(2*n+1)*sum((j^2+j+1)^n*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)] for n in (1..12)]) # G. C. Greubel, Jan 07 2022
CROSSREFS
Sequence in context: A107775 A003117 A239465 * A138229 A131702 A276826
KEYWORD
nonn,tabf
AUTHOR
Roger L. Bagula, Feb 20 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 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)