The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A165889 Irregular triangle T(n, k) = [x^k]( p(n, x) ), where p(n, x) = (1-x)^(2*n+4)*( Sum_{j >= 0} j^(n+1)*x^j )^2/x^2, read by rows. 4
1, 1, 2, 1, 1, 8, 18, 8, 1, 1, 22, 143, 244, 143, 22, 1, 1, 52, 808, 3484, 5710, 3484, 808, 52, 1, 1, 114, 3853, 35032, 125746, 188908, 125746, 35032, 3853, 114, 1, 1, 240, 16782, 290672, 2000703, 6040992, 8702820, 6040992, 2000703, 290672, 16782, 240, 1 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
T(n, k) = [x^k]( p(n, x) ), where p(n, x) = (1-x)^(2*n+4)*( Sum_{j >= 0} j^(n+1)*x^j )^2/x^2.
T(n, k) = [x^k]( p(n, x) ), where p(n, x) = (1-x)^(2*n+4)*( PolyLog(-n-1, x)/x)^2.
T(n, n-k) = T(n, k). - G. C. Greubel, Mar 09 2022
EXAMPLE
Irregular triangle begins as:
1;
1, 2, 1;
1, 8, 18, 8, 1;
1, 22, 143, 244, 143, 22, 1;
1, 52, 808, 3484, 5710, 3484, 808, 52, 1;
1, 114, 3853, 35032, 125746, 188908, 125746, 35032, 3853, 114, 1;
MATHEMATICA
p[n_, x_]:= p[n, x]= (1/x^2)*(1-x)^(2*n+4)*Sum[k^(n+1)*x^k, {k, 0, Infinity}]^2;
Table[CoefficientList[p[n, x], x], {n, 0, 12}]//Flatten (* modified by G. C. Greubel, Mar 09 2022 *)
PROG
(Sage)
def p(n, x): return (1/x^2)*(1-x)^(2*n+4)*sum( j^(n+1)*x^j for j in (0..2*n+4) )^2
def T(n, k): return ( p(n, x) ).series(x, 2*n+1).list()[k]
flatten([[T(n, k) for k in (0..2*n)] for n in (0..12)])
CROSSREFS
Sequence in context: A156901 A167400 A225848 * A087127 A144946 A332717
KEYWORD
nonn,tabf
AUTHOR
Roger L. Bagula, Sep 29 2009
EXTENSIONS
Edited by G. C. Greubel, Mar 09 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 June 1 14:02 EDT 2024. Contains 373023 sequences. (Running on oeis4.)