login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A343170
Triangle read by rows: coefficients of type B alternating Eulerian polynomials.
1
1, 1, 1, 3, 2, 3, 11, 13, 13, 11, 57, 76, 118, 76, 57, 361, 597, 962, 962, 597, 361, 2763, 5270, 9733, 10548, 9733, 5270, 2763, 24611, 53849, 107427, 136673, 136673, 107427, 53849, 24611, 250737, 616408, 1334556, 1875432, 2167654, 1875432, 1334556, 616408, 250737
OFFSET
0,4
LINKS
Shi-Mei Ma, Qi Fang, Toufik Mansour and Yeong-Nan Yeh, Alternating Eulerian polynomials and left peak polynomials, arXiv:2104.09374 [math.CO], 2021.
EXAMPLE
Triangle begins:
1;
1, 1;
3, 2, 3;
11, 13, 13, 11;
57, 76, 118, 76, 57;
...
MATHEMATICA
Bhat[0][_] = 1; Bhat[1][x_] := 1 + x;
Bhat[n_][x_] := Bhat[n][x] = (n + x + (n-1) x^2) Bhat[n - 1][x] + (1 - x)* (1 + x^2) Bhat[n-1]'[x];
Table[CoefficientList[Bhat[n][x], x], {n, 0, 8}] // Flatten (* Jean-François Alcover, Apr 21 2021 *)
CROSSREFS
Sequence in context: A186102 A170848 A078017 * A169816 A291739 A057053
KEYWORD
nonn,tabl
AUTHOR
N. J. A. Sloane, Apr 21 2021
EXTENSIONS
More terms from Jean-François Alcover, Apr 21 2021
STATUS
approved