OFFSET
0,6
LINKS
Ryuichi Sakamoto, The h*-polynomial of the cut polytope of K_{2,m} in the lattice spanned by its vertices, arXiv:1904.10667 [math.CO], 2019.
Ryuichi Sakamoto, The h*-polynomial of the cut polytope of K_{2,m} in the lattice spanned by its vertices, Journal of Integer Sequences, Vol. 23, 2020, #20.7.5.
OEIS Wiki, Eulerian polynomials.
FORMULA
T(n,k) = T(n,2*n-1-k) for n > 0.
EXAMPLE
Irregular triangle begins:
1, 1;
1, 1;
1, 3, 3, 1;
1, 9, 26, 26, 9, 1;
1, 23, 165, 387, 387, 165, 23, 1;
1, 53, 860, 4292, 9194, 9194, 4292, 860, 53, 1;
...
PROG
(PARI) a(n) = sum(k=0, n, k!*stirling(n, k, 2)*(x-1)^(n-k));
T(n, k) = polcoef((1+x)*a(n)^2, k);
for(n=0, 7, for(k=0, 2*(n+0^n)-1, print1(T(n, k), ", ")));
CROSSREFS
KEYWORD
nonn,tabf
AUTHOR
Seiichi Manyama, Mar 19 2025
STATUS
approved
