This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A373432 #22 Jun 13 2024 04:44:56 %S A373432 1,1,1,1,2,1,1,4,6,4,1,1,7,19,26,19,7,1,1,12,52,116,150,116,52,12,1,1, %T A373432 20,130,430,845,1052,845,430,130,20,1,1,33,312,1453,4023,7218,8736, %U A373432 7218,4023,1453,312,33,1,1,54,730,4639,17316,42142,70593,83610,70593,42142,17316,4639,730,54,1 %N A373432 Triangle read by rows. Coefficients of the polynomials P(n, x) * EZ(n, x), where P denote the Pascal polynomials and EZ the zig-zag Eulerian polynomials A205497. %C A373432 There are various conventions for indexing Eulerian numbers. The one used here is described by the condition that for all polynomials p(n, 0) = 1. This applies equally to the classical Eulerian polynomials given by the coefficients A173018, as well as to the Eulerian zig-zag polynomials with coefficients in A205497 and to the polynomials here. See the illustration (link section). %H A373432 Peter Luschny, <a href="/A373432/a373432.png">Illustrating the polynomials</a>. %e A373432 Triangle starts: %e A373432 [0] [1] %e A373432 [1] [1, 1] %e A373432 [2] [1, 2, 1] %e A373432 [3] [1, 4, 6, 4, 1] %e A373432 [4] [1, 7, 19, 26, 19, 7, 1] %e A373432 [5] [1, 12, 52, 116, 150, 116, 52, 12, 1] %e A373432 [6] [1, 20, 130, 430, 845, 1052, 845, 430, 130, 20, 1] %p A373432 EZP := proc(P, len) local R, EZ, EP, EZP, CL, n; %p A373432 R := proc(n) option remember; local F; if n = 0 then 1/(1-q*x) else F := R(n-1); %p A373432 simplify(p/(p - q)*(subs({p = q, q = p}, F) - subs(p = q, F))) fi end: %p A373432 EZ := (n, x) -> ifelse(n < 3, 1, expand(simplify(subs({p = 1, q = 1}, R(n))*(1-x)^(n+1))/x^2)): %p A373432 EP := (n, x) -> local k; simplify(add(P(n, k)*x^k, k = 0..n)): %p A373432 EZP := (n, x) -> expand(EZ(n, x) * EP(n, x)): %p A373432 CL := p -> PolynomialTools:-CoefficientList(p, x); %p A373432 seq(CL(EZP(n, x)), n = 0..len); ListTools:-Flatten([%]) end: %p A373432 EZP(binomial, 8); %Y A373432 Cf. A000831 (row sums), A007318 (Pascal), A205497 (zig-zag Eulerian). %K A373432 nonn,tabf %O A373432 0,5 %A A373432 _Peter Luschny_, Jun 05 2024