Fact-checked by Grok 2 weeks ago

Eulerian number

In , the Eulerian number \langle n \ k \rangle counts the number of permutations of the set \{1, 2, \dots, n\} with exactly k , where a descent is a position i (with $1 \leq i < n) such that the i-th entry exceeds the (i+1)-th entry in the permutation. These nonnegative integers form a triangular array, with entries for fixed n ranging from k=0 to k=n-1, and they satisfy \sum_{k=0}^{n-1} \langle n \ k \rangle = n!, accounting for all permutations of n elements. Introduced by Leonhard Euler in his 1755 treatise Institutiones calculi differentialis, the numbers initially arose in the context of differential calculus and series expansions but later found profound combinatorial interpretations. The Eulerian numbers exhibit symmetry, with \langle n \ k \rangle = \langle n \ n-1-k \rangle, reflecting a bijection between permutations with k descents and those with n-1-k descents via reversal. They obey the recurrence \langle n \ k \rangle = (k+1)\langle n-1 \ k \rangle + (n-k)\langle n-1 \ k-1 \rangle for $1 \leq k \leq n-1, with base cases \langle n \ 0 \rangle = 1 and \langle n \ k \rangle = 0 if k < 0 or k \geq n. A key identity, Worpitzky's theorem, expresses powers as \sum_{k=0}^{n-1} \langle n \ k \rangle \binom{x+n-k-1}{n} = x^n for integer x \geq 1, linking the numbers to binomial expansions. Eulerian polynomials A_n(x) = \sum_{k=0}^{n-1} \langle n \ k \rangle x^{k+1} encode these coefficients and appear in generating functions for permutation statistics, with the exponential generating function \sum_{n \geq 0} A_n(x) \frac{t^n}{n!} = \frac{1-x}{e^{t(x-1)} - x}. Beyond enumerative combinatorics, Eulerian numbers connect to algebraic structures like the ring of quasi-symmetric functions, geometric interpretations in polytopes such as the Eulerian poset, and applications in dynamical systems and sorting algorithms. Their study continues in modern research, including generalizations to q-analogues and multivariate extensions.

Fundamentals

Definition

The Eulerian numbers were first studied by Leonhard Euler in 1749 in the context of enumerating permutations, with the results appearing in print in his 1768 paper published in the Novi Commentarii Academiae Scientiarum Petropolitanae. The Eulerian number A(n,k), also commonly denoted by the angle bracket notation \langle n \atop k \rangle or sometimes E(n,k), counts the number of permutations \pi of the set \{1, 2, \dots, n\} that have exactly k descents. A descent in a permutation \pi occurs at a position i (where $1 \leq i < n) if \pi(i) > \pi(i+1). These numbers are defined for positive integers n \geq 1 and integers k satisfying $0 \leq k \leq n-1. For instance, A(1,0) = 1 since the single permutation of \{1\} has no possible descents, while for n=2, A(2,0) = 1 (the increasing permutation (1,2)) and A(2,1) = 1 (the decreasing permutation (2,1)). The Eulerian polynomials provide a generating function perspective on these numbers and are defined by A_n(x) = \sum_{k=0}^{n-1} A(n,k) \, x^k for n \geq 1, with A_0(x) = 1 by convention. The exponential generating function for the sequence of Eulerian polynomials is \sum_{n=0}^\infty A_n(x) \frac{t^n}{n!} = \frac{1-x}{e^{t(x-1)} - x}. Evaluating at x=1 yields A_n(1) = n!, reflecting the total count of permutations of n elements. The initial values of the Eulerian numbers form a symmetric triangle, as shown below for n up to 5:
n \ k01234
11
211
3141
4111111
512666261

Basic Properties

The Eulerian numbers A(n,k) satisfy the boundary conditions A(n,0) = 1 and A(n,n-1) = 1 for all integers n \geq 1, with A(n,k) = 0 whenever k < 0 or k \geq n. These conditions follow directly from the combinatorial interpretation, as there is exactly one permutation of $$ with no descents (the increasing permutation) and exactly one with the maximum number of descents (the decreasing permutation). A key structural feature is the symmetry relation A(n,k) = A(n, n-k-1) for $0 \leq k \leq n-1. This reflection property arises from the bijection between permutations with k descents and those with n-1-k descents, obtained by reversing the order of the elements. The symmetry extends to the associated Eulerian polynomials A_n(x) = \sum_{k=0}^{n-1} A(n,k) x^k, which are palindromic of degree n-1, satisfying A_n(x) = x^{n-1} A_n(1/x). Consequently, the coefficients of A_n(x) are positive integers, reflecting the strict positivity of the Eulerian numbers: A(n,k) > 0 for all $0 \leq k \leq n-1. Regarding growth, for fixed k, the Eulerian numbers exhibit behavior A(n,k) \sim (k+1)^n as n \to \infty. This asymptotic follows from the explicit representation A(n,k) = \sum_{j=0}^{k+1} (-1)^j \binom{n+1}{j} (k+1-j)^n, where the dominant term is (k+1)^n.

Computation

Recurrence Relations

The Eulerian numbers \langle n \ k \rangle satisfy the fundamental \langle n \ k \rangle = (k+1) \langle n-1 \ k \rangle + (n-k) \langle n-1 \ k-1 \rangle for $1 \leq k \leq n-1, with boundary conditions \langle n \ 0 \rangle = 1 and \langle n \ n-1 \rangle = 1 for all n \geq 1. This relation allows iterative computation by building values from previous rows, reflecting the combinatorial structure of where the position of n in a permutation of \{1,2,\dots,n\} determines how descents are inherited from permutations of \{1,2,\dots,n-1\}. To compute the Eulerian numbers, one constructs the Eulerian triangle row by row starting from the base case n=1: \langle 1 \ 0 \rangle = 1. For subsequent rows, apply the recurrence with the boundaries. The values for small n are as follows:
nk=0k=1k=2k=3
11
211
3141
4111111
For instance, \langle 3 \ 1 \rangle = (1+1) \langle 2 \ 1 \rangle + (3-1) \langle 2 \ 0 \rangle = 2 \cdot 1 + 2 \cdot 1 = 4. Using dynamic programming to fill an n \times n table via this recurrence yields all \langle m \ k \rangle for $1 \leq m \leq n and $0 \leq k \leq m-1 in O(n^2) time, as each of the O(n^2) entries depends on at most two prior values from the previous row.

Explicit Formulas

One of the primary explicit formulas for the Eulerian number \langle n \ k \rangle is the alternating summation \langle n \ k \rangle = \sum_{i=0}^{k+1} (-1)^i \binom{n+1}{i} (k+1 - i)^n, which arises from inclusion-exclusion principles applied to counting permutations with a fixed number of ascents or descents. This expression allows direct computation for any n and k without relying on smaller values and is particularly useful for asymptotic analysis or symbolic manipulation. An equivalent reindexing of the sum, obtained by substituting j = k + 1 - i, yields \langle n \ k \rangle = \sum_{j=0}^{k+1} (-1)^{k+1-j} \binom{n+1}{k+1-j} j^n. This form bears a close resemblance to the explicit summation for the unsigned Stirling numbers of the second kind S(n+1, k+1) = \frac{1}{(k+1)!} \sum_{j=0}^{k+1} (-1)^{k+1-j} \binom{k+1}{j} j^{n+1}, highlighting structural parallels between the two sequences in expressing rising factorials or powers via signed sums; both originate from combinatorial inclusion-exclusion but differ in the binomial coefficients and scaling. An integral representation provides another closed-form avenue for evaluation, given by \langle n \ k \rangle = \frac{1}{\pi} \int_0^\pi (\sin t)^{n+1} \cos \bigl( (n + 1 - 2k) t \bigr) \, dt for integers n \geq 0 and any integer k, with \langle n \ k \rangle = 0 outside $0 \leq k \leq n-1. This trigonometric integral facilitates connections to and symmetric properties of Eulerian numbers, such as \langle n \ k \rangle = \langle n \ n - k - 1 \rangle. Eulerian numbers can also be extracted via inversion of their generating function. The exponential generating function for the Eulerian polynomials A_n(y) = \sum_{k=0}^{n-1} \langle n \ k \rangle y^{k+1} is \sum_{n=0}^\infty A_n(y) \frac{x^n}{n!} = \frac{1-y}{e^{x(y-1)} - y}; thus, \langle n \ k \rangle = n! [x^n y^{k+1}] \frac{1-y}{e^{x(y-1)} - y}, where [ \cdot ] denotes the operator, offering a formal explicit expression through without summation over terms.

Identities

Summation Identities

One fundamental summation identity for the Eulerian numbers \langle n \ k \rangle is the total sum over the number of descents: \sum_{k=0}^{n-1} \langle n \ k \rangle = n!. This identity follows directly from the combinatorial interpretation of the Eulerian numbers, where \langle n \ k \rangle counts the permutations of = \{1, 2, \dots, n\} with exactly k descents (positions i where \pi_i > \pi_{i+1}). Since the sets of permutations partitioned by the number of descents (from 0 to n-1) cover all elements of the symmetric group S_n, the sum equals |S_n| = n!. A bijection establishing this is the identity map on S_n, which preserves the descent statistic while partitioning the group. Partial sums of Eulerian numbers also admit a direct combinatorial . Specifically, \sum_{k=0}^m \langle n \ k \rangle counts the number of permutations in S_n with at most m , for $0 \leq m \leq n-1. This follows by summing the sizes of the disjoint sets of permutations with exactly k for k = 0 to m. While no simple closed form exists beyond this count, the partial provides insight into the distribution of descent in S_n. A weighted summation identity arises from probabilistic considerations of descents. The sum \sum_{k=0}^{n-1} k \, \langle n \ k \rangle = \frac{n-1}{2} \, n! equals n! times the expected number of descents in a uniform random permutation of . This expectation is computed via linearity: the number of descents is $\sum_{i=1}^{n-1} I_i$, where $I_i = 1$ if $\pi_i > \pi_{i+1}$ and 0 otherwise. Each $\mathbb{E}[I_i] = \Pr(\pi_i > \pi_{i+1}) = 1/2$, since the values at positions $i$ and $i+1$ form a random pair of distinct elements from , equally likely to be in either order. Thus, the total expectation is (n-1)/2. Equivalently, \sum_{k=0}^{n-1} (k+1) \, \langle n \ k \rangle = \frac{n+1}{2} \, n!, obtained by adding the total sum identity. This weighted sum highlights the central tendency of the descent distribution. The Eulerian numbers satisfy a compact exponential generating function that encapsulates many summation properties: \sum_{n \geq 0} A_n(y) \frac{t^n}{n!} = \frac{1-y}{e^{t(y-1)} - y}, where A_n(y) = \sum_{k=0}^{n-1} \langle n \ k \rangle y^{k+1} is the Eulerian polynomial. This generating function arises from the recurrence \langle n \ k \rangle = (k+1) \langle n-1 \ k \rangle + (n-k) \langle n-1 \ k-1 \rangle. Setting A_0(y) = 1 and solving the corresponding differential equation yields the closed form, which encodes sums over both n and k.

Polynomial Identities

One of the central polynomial identities involving Eulerian numbers is Worpitzky's identity, established by Julius Worpitzky in 1883. It provides a representation of the power x^n as x^n = \sum_{k=0}^{n-1} \langle n \ k \rangle \binom{x + k}{n}, where the coefficients \langle n \ k \rangle are the Eulerian numbers. This identity highlights the role of Eulerian numbers in bridging the and a shifted basis in the of polynomials of degree at most n. A outlines the equivalence by interpreting the right-hand side as counting functions from an n-element set to an x-element set via permutations with k descents: the Eulerian number \langle n \ k \rangle enumerates such permutations of $$, while \binom{x + k}{n} counts the ways to assign increasing labels from a of size x + k to the descent blocks, yielding the total x^n functions overall. The inverse relation to Worpitzky's identity expresses shifted binomial coefficients in terms of powers, weighted by signed Eulerian numbers, and is derived via inclusion-exclusion. Substituting the explicit inclusion-exclusion formula for the Eulerian numbers, \langle n \ k \rangle = \sum_{j=0}^{k+1} (-1)^j \binom{n+1}{j} (k + 1 - j)^n, into the Worpitzky and rearranging yields an expression for \binom{x + k}{n} as an alternating involving powers y^m with coefficients depending on Eulerian numbers, confirming the triangular invertibility of the . This inclusion-exclusion approach underscores the combinatorial overcounting and correction inherent in statistics. A related congruence is the Touchard congruence, stating that for n > 1, \sum_{k=0}^{n-1} \langle n \ k \rangle \equiv 0 \pmod{n}. Since the sum equals n!, which is divisible by n for n > 1, this provides a perspective on the total count of permutations. Eulerian numbers connect to tangent numbers (the odd-indexed Euler-Bernoulli numbers) through evaluation of the Eulerian polynomial A_n(x) = \sum_{k=0}^{n-1} \langle n \ k \rangle x^{k+1} at x = -1. For odd n, A_n(-1) = (-1)^{(n+1)/2} E_n, where E_n counts the number of alternating permutations of $$. This correspondence arises from generating function identities linking Eulerian polynomials to the of \tan x.

Alternating Sum Formulas

One key alternating sum involving Eulerian numbers \langle n \ k \rangle, which count the number of permutations of with exactly $k$ descents, is the evaluation of the Eulerian polynomial $A_n(x) = \sum_{k=0}^{n-1} \langle n \ k \rangle x^{k+1}$ at $x = -1$. This yields $A_n(-1) = \sum_{k=0}^{n-1} \langle n \ k \rangle (-1)^{k+1} = 0$ when $n$ is even, reflecting a perfect cancellation in the signed enumeration of permutations by the number of descents. For odd $n$, the value equals $(-1)^{(n+1)/2} E_n$, where $E_n$ is the $n$-th Euler zigzag number, counting the number of alternating permutations of. This connection arises from combinatorial bijections and generating function evaluations, linking the signed descent statistic to up-down permutation structures. The explicit formula for individual Eulerian numbers also involves an alternating sum derived from the principle of inclusion-exclusion applied to positions. Specifically, \langle n \ k \rangle = \sum_{j=0}^{k+1} (-1)^j \binom{n+1}{j} (k + 1 - j)^n. This expression counts permutations with exactly k by overcounting those with descents forced at certain positions and correcting via inclusion-exclusion on the excess . The alternating signs account for the over- and under-counts in the union of sets where specific potential positions are designated. This approach parallels the inclusion-exclusion formula for derangements !n = n! \sum_{j=0}^n \frac{(-1)^j}{j!}, where fixed points play the role analogous to , providing a refined signed count in permutation statistics. Summing the explicit formula over k with alternating signs recovers the evaluation A_n(-1), as interchanging sums leads to a double alternating sum that simplifies via generating functions or direct computation. In the context of signed permutations, this alternating sum interprets as the Euler characteristic of certain permutation posets or the signed trace over descent operators, extending to type B Eulerian numbers where signs incorporate inversion statistics. The connection to forward differences emerges in the explicit formula, where the sum \sum_{j} (-1)^j \binom{n+1}{j} f(k+1-j) resembles the forward difference operator \Delta^{n+1} f(y) = \sum_{j=0}^{n+1} (-1)^j \binom{n+1}{j} f(y - j) evaluated at appropriate points, with f(y) = y^n. This operator perspective frames Eulerian numbers as coefficients in the finite difference expansion of monomials, bridging combinatorial counts to umbral calculus and polynomial interpolation. For example, the identity aligns with representations where \Delta^n 0^m for m \geq n involves Stirling numbers, but the Eulerian form refines the descent-based refinement.
nA_n(-1)Interpretation
1-1(-1)^{(1+1)/2} E_1 = -1
20Even n
32(-1)^{(3+1)/2} E_3 = 2
40Even n
5-16(-1)^{(5+1)/2} E_5 = -16
This table illustrates the alternating sum for small n, highlighting the pattern for odd dimensions.

Interpretations

Combinatorial Interpretations

Eulerian numbers admit several equivalent combinatorial interpretations beyond the standard count of permutations with a given number of ascents. By the symmetry of the symmetric group, the number of permutations of $$ with exactly k descents equals the number with k ascents, since reversing a permutation interchanges ascents and descents. This equivalence follows directly from the involution \pi \mapsto n+1 - \pi(i) for each position i. Another key interpretation counts the number of excedances in permutations. An excedance in a permutation \pi of $$ occurs at position i if \pi(i) > i. The equidistribution of ascents and excedances—that is, the number of permutations with exactly k excedances is also the Eulerian number A(n,k)—was established through bijective proofs. One such bijection, due to Foata, employs a variant of the cycle lemma: it decomposes the permutation into cycles and rotates them to align fixed points and excedances appropriately, preserving the count of k such features. This mapping demonstrates the structural similarity between the two statistics. Eulerian numbers also enumerate certain labeled tree structures. Specifically, A(n,k) counts the number of increasing binary trees on n labeled nodes \{1, 2, \dots, n\}, where labels increase along paths from the , and there are exactly k left edges. In such trees, each internal node has at most two children, with left and right subtrees strictly increasing in labels. A bijective proof constructs these trees recursively by inserting the largest label n as a new root or attaching it to an existing leaf, tracking the left-edge count via the insertion site. This interpretation highlights the connection to recursive combinatorial growth processes. Finally, Eulerian numbers arise in generalized ballot problems. The reflection principle provides a bijective subtraction of invalid paths, yielding the exact count via inclusion-exclusion and linking to the classical theorem. These counts equivalently reformulate the permutation interpretations through the cycle lemma, which cyclically shifts sequences to enforce the boundary condition.

Geometric Interpretations

Eulerian numbers possess significant geometric interpretations through their connections to convex polytopes, particularly in terms of face counts, h-vectors, and volumes of specific regions. One prominent association arises with the , where the Eulerian numbers describe volumes of certain parallel slices. Specifically, for the unit hypercube Q = [0,1)^n, the volume of the slice \{ u = (u_1, \dots, u_n) \in Q \mid k-1 \leq \sum u_i < k \} is given by \langle n, k-1 \rangle / n!, where \langle n, k-1 \rangle denotes the Eulerian number counting permutations of with exactly k-1 ascents. This interpretation links the continuous geometry of the to discrete permutation statistics, providing a probabilistic view where the sum of uniform random variables on [0,1) falls into these slices with probabilities proportional to Eulerian numbers. A deeper geometric link appears in the h-vector of polytopes related to the hypercube. The h*-vector entries of the n-dimensional hypercube are precisely the Eulerian numbers A(n,k), which encode refined face-counting information via the transformation from the f-vector. This connection highlights the role of Eulerian numbers in the topology of cubical complexes, where the h*-polynomial coincides with the Eulerian polynomial A_n(t) = \sum_k A(n,k) t^k. Such relations stem from the balanced nature of the hypercube's face lattice, which is an Eulerian poset—a graded poset where every open interval has equal numbers of even and odd rank elements—first systematically explored by Richard Stanley in the 1970s and 1980s. The permutohedron offers another key geometric perspective, as the Eulerian polynomial A_n(t) serves as the h-polynomial of its dual polytope P_n^*. The permutohedron P_n is the convex hull of permutations of (n-1, n-2, \dots, 0) in \mathbb{R}^n, and its dual is a flag simplicial polytope combinatorially equivalent to the barycentric subdivision of the boundary of an (n-1)-simplex. The h-vector coefficients, which count the dimensions of faces in a shelling order, thus equal the Eulerian numbers, reflecting the descent structure of the symmetric group underlying the permutohedron's construction. This ties Eulerian numbers to order polytopes of the boolean lattice, where face enumerations mirror permutation descents. Indirect connections extend to the associahedron and other Catalan-related structures through mixed Eulerian numbers, which appear as coefficients in the volume polynomials of generalized permutohedra. For the associahedron \mathrm{Ass}_{n-1}, realized as a generalized permutohedron via interval building sets, the volume is a specialization of these mixed volumes, yielding C_{n-1} as particular cases of Eulerian sums. More broadly, the mixed Eulerian numbers A(\mathbf{c}_1, \dots, \mathbf{c}_{n+1}) compute volumes like \mathrm{Vol}(P_n(x_1, \dots, x_{n+1})), where P_n is a with edge lengths x_i - x_{i+1}, and specializations recover standard Eulerian numbers or tree enumerations (n+1)^{n-1}. These links underscore the ubiquity of Eulerian structures in polytope volumes beyond classical cases. Stanley further interpreted Eulerian numbers A(n, k+1) as counting interior lattice points in specific lattice polytopes associated with permutation statistics, such as certain order polytopes or slices of the permutohedron, reinforcing their role in Ehrhart theory and interior point enumeration for convex bodies.

Variants and Generalizations

Type B Eulerian Numbers

Type B Eulerian numbers, denoted B(n,k), count the number of signed permutations of = \{1, 2, \dots, n\} with exactly k descents in the Coxeter group B_n, also known as the hyperoctahedral group. A signed permutation is a bijection w: \to \{\pm 1, \pm 2, \dots, \pm n\} with distinct absolute values, represented in one-line notation w(1) w(2) \dots w(n), where the natural order on signed integers is \dots < -2 < -1 < 1 < 2 < \dots. The type B descent set is \mathrm{Des}_B(w) = \{ i \in \{0, 1, \dots, n-1\} \mid w(i) > w(i+1) \}, with the convention w(0) = 0, so i=0 is a descent w(1) < 0, and for $1 \leq i \leq n-1, it is a descent if w(i) > w(i+1) in the signed order. Thus, k = |\mathrm{Des}_B(w)|. For example, the signed permutations of {{grok:render&&&type=render_inline_citation&&&citation_id=2&&&citation_type=wikipedia}} yield B(2,0) = 1, B(2,1) = 6, and B(2,2) = 1. The for type B Eulerian numbers is B_n(x) = \sum_{k=0}^n B(n,k) x^k, which enumerates signed permutations by descent number. The is \sum_{n=0}^\infty B_n(x) \frac{t^n}{n!} = \frac{x-1}{x - e^{2t(x-1)}} e^{t(x-1)}, with B_0(x) = 1. These satisfy the recurrence B(n,k) = (2k+1) B(n-1,k) + (2n - 2k + 1) B(n-1,k-1) for n \geq 1 and $0 \leq k \leq n, with boundary conditions B(n,k) = 0 if k < 0 or k > n, and B(0,0) = 1. Key properties include the total sum \sum_{k=0}^n B(n,k) = 2^n n!, reflecting the order of the hyperoctahedral group B_n. They also exhibit symmetry B(n,k) = B(n, n-k), arising from the that reverses the signed permutation and negates all signs, preserving the descent set size. Type B Eulerian numbers appear in type B spline theory, where the coefficients relate to the dimensions of spline spaces over signed permutohedra, and connect to type B Mahonian numbers via q-analogues that refine descents by inversion statistics in signed s.

Eulerian Numbers of the Second Order

The Eulerian numbers of the second order, denoted A^{(2)}(n,k), count the number of permutations of order n with exactly k ascents. A permutation of order n is a permutation of the \{1^2, 2^2, \dots, n^2\} such that, for each i, all entries between the two occurrences of i are greater than i; equivalently, it corresponds to a decomposition of [2n] where each is increasing and contains exactly two occurrences of each label from 1 to n. The generating for these numbers is P_n(x) = \sum_{k=0}^{n-1} A^{(2)}(n,k) x^{k+1}. These numbers satisfy the A^{(2)}(n,k) = (k+1) A^{(2)}(n-1,k) + (2n - k - 1) A^{(2)}(n-1,k-1), with conditions A^{(2)}(n,k) = 0 if k < 0 or k >= n, and A^{(2)}(1,0) = 1. This recurrence arises from considering the position of the two n's in the and how they affect the number of ascents relative to the underlying Stirling permutation of order n-1. The second-order Eulerian numbers exhibit the symmetry A^{(2)}(n,k) = A^{(2)}(n,n-k-1), which follows from a reversing the permutation while preserving the ascent , similar to the symmetry in standard Eulerian numbers but adapted to the multiset structure. Additionally, the total number of Stirling permutations, \sum_k A^{(2)}(n,k), equals the double factorial (2n-1)!!, linking these numbers to counts of ordered set partitions in broader combinatorial contexts like the ordered Bell numbers through shared properties.

Recent Generalizations

Recent developments in Eulerian numbers have focused on q-deformations and parametric extensions that refine classical structures with additional variables, often drawing from combinatorial and contexts. One prominent advancement is the introduction of remixed Eulerian numbers, a q-deformation of Postnikov's mixed Eulerian numbers, defined for elements c in the weak order on the as A_c(q). These polynomials arise in the study of the permutahedral variety and provide a refinement for connected components, encoding success probabilities in probabilistic processes on weighted trees, where q = 1 recovers the classical mixed Eulerian interpretation. They satisfy and as polynomials in q, with combinatorial interpretations via permutahedral cubes and extensions to non-connected cases explored in subsequent work. Building on mixed Eulerian numbers, recent efforts have yielded explicit non-recursive formulas inspired by combinatorial decompositions, resolving longstanding questions in their . In particular, a 2025 study derives such formulas for mixed Eulerian numbers, interpreting them as numbers in Chow rings and linking them to valuative s. This work also equates matroidal mixed Eulerian numbers to Derksen's \mathcal{G}-, providing closed-form expressions that generalize beyond permutation-based counts. Matroidal variants further extend these numbers to arbitrary s, defined as products in the matroid Chow ring, with properties including log-concavity and recursions tied to characteristic polynomials; they equal weighted enumerations of binary trees and reprove results from Hodge-theoretic approaches. Generalizations via Graham-Knuth-Patashnik (GKP)-type recurrences have introduced new families of Eulerian numbers that encompass descent-Stirling statistics. A 2023 analysis defines these via triangular recurrences, relating them to Hsu-Shiue through upper transformations and generalizing the Worpitzky identity as coefficients between bases. The exponential generating functions admit implicit representations using the Gauss , obtained via the , with closed forms in combinatorially significant cases and identities for related . Further parametric refinements appear in the (α, β)-Eulerian polynomials, extended in recent work to incorporate multiple variables tracking descent-Stirling statistics on permutations. These polynomials P_n(u, v, w, z \mid \alpha, \beta) count permutations by valleys, exterior peaks, interior peaks, double descents, and maxima, building on Carlitz-Scoville definitions and using grammatical calculus for generating function connections. Post-2020 q-analogues of Eulerian polynomials, such as the remixed variants, satisfy deformed recurrences that parallel classical ones but incorporate q-weights, with brief connections to representations through permutahedral structures; these deformations enable refined enumerations in without direct applications dominating the literature.

References

  1. [1]
    Eulerian Numbers - SpringerLink
    T. Kyle Petersen is an Associate Professor of Mathematics at DePaul University, Chicago, USA. His research areas include algebraic, enumerative, and topological ...
  2. [2]
    Institutiones Calculi differentialis : Euler, Leonhard - Internet Archive
    Jan 22, 2016 · Institutiones Calculi differentialis : Euler, Leonhard : Free Download, Borrow, and Streaming : Internet Archive.
  3. [3]
    Eulerian polynomials - OeisWiki
    May 21, 2013 · The Eulerian polynomials were introduced by Leonhard Euler in his Remarques sur un beau rapport entre les séries des puissances tant directes que réciproques ...
  4. [4]
  5. [5]
    Eulerian Number -- from Wolfram MathWorld
    The Eulerian number gives the number of permutations of {1,2,...,n} having k permutation ascents (Graham et al. 1994, p. 267).
  6. [6]
    A008292 - OEIS
    Triangle of Eulerian numbers T(n,k) (n >= 1, 1 <= k <= n) read by rows. 414. 1, 1, 1, 1, 4, 1, 1, 11, 11, 1, 1, 26, 66, 26, 1, 1, 57, 302, 302, 57, 1, 1, 120 ...
  7. [7]
    [PDF] generalized eulerian polynomials and some applications
    In the case a = r = 1 and b = 0, the polynomial (2) is np and the mentioned coefficients A1,0,1 (p, i), p ∈ N, i = 0,1,...,p, are the standard Eulerian numbers ...
  8. [8]
    [PDF] Generalized Eulerian Polynomials with a Nonnegative Gamma Vector
    As An(x) is a palindromic polynomial of degree n − 1, namely. An(x) = xn−1 An(1/x), ... x1+asc(w) = xAn−1(x), and a bijective proof of (13) is obtained. 4 ...Missing: A_n(
  9. [9]
    None
    ### Summary of Basic Properties of Eulerian Numbers
  10. [10]
  11. [11]
  12. [12]
    [PDF] An integral representation for Eulerian numbers
    For n > 1, the Eulerian number A(n,k) can be defined as the number of permutations of n letters with k runs up (cf. [3], t.II, p.82, and [4], p.34). It is ...<|control11|><|separator|>
  13. [13]
    None
    Below is a merged summary of "Eulerian Numbers" by T. Kyle Petersen, consolidating all information from the provided segments into a single, comprehensive response. To maximize detail and clarity, I will use a table format for key sections (e.g., Summation Identities, Total Sum, etc.) where applicable, followed by additional details and URLs. This ensures all information is retained while maintaining readability.
  14. [14]
    Worpitzky's Identity -- from Wolfram MathWorld
    x^n=sum_(k=0)^n (x+k; n), where is an Eulerian number and (n; k) is a binomial coefficient (Worpitzky 1883; Comtet 1974, p. 242).
  15. [15]
    [PDF] Enumerative Combinatorics Volume 1 second edition - Mathematics
    What is Enumerative Combinatorics? Enumerative combinatorics has undergone enormous development since the publication of the first edition of this book in 1986.Missing: Worpitzky | Show results with:Worpitzky
  16. [16]
    None
    Below is a merged summary of Eulerian numbers and polynomials based on the provided segments from T. Kyle Petersen’s various works. To retain all information in a dense and organized manner, I will use a combination of text and tables in CSV format where appropriate. The response consolidates definitions, formulas, examples, and references across all segments, ensuring no detail is lost.
  17. [17]
    [PDF] q-EULERIAN POLYNOMIALS: EXCEDANCE NUMBER AND ...
    Björner and Richard Stanley. We thank the Institute ... ArXiv math.CO/0602226. [38] M.L. Wachs, An involution for signed Eulerian numbers, Discrete Math.
  18. [18]
    Eulerian polynomials: Excedance number and major index
    The Eulerian polynomials enumerate permutations according to their number of descents or their number of excedances. ... permutations, Higher combinatorics (Proc.Missing: interpretations | Show results with:interpretations
  19. [19]
    [PDF] Eulerian numbers. Increasing binary trees. 3 Pascal-like triangles
    Mar 4, 2019 · Theorem 5. Ank is the number of increasing binary trees on n nodes with k left edges. Proof. Think about the bijection. When we go from the ...
  20. [20]
  21. [21]
    (PDF) Eulerian numbers revisited: Slices of hypercube - ResearchGate
    Home · Computer Science and Engineering · Computing. Conference PaperPDF Available. Eulerian numbers revisited: Slices of hypercube. February 2014. DOI:10.1109/ ...
  22. [22]
    None
    Error: Could not load webpage.<|separator|>
  23. [23]
    [PDF] gamma-positivity of variations of eulerian polynomials
    The symmetric function polynomial Qn(x,t) defined in (1.10) can now be given an explicit expansion which establishes Schur-γ-positivity. The γ-coefficients are ...Missing: A_n(
  24. [24]
    None
    Summary of each segment:
  25. [25]
  26. [26]
    [PDF] Series A 24, 24-33 (1978) If k and n are positive integers, let ,S(Q, k ...
    GESSEL AND STANLEY. We prove (2) by induction on k. It is true for k = 1 ... (We call the elemenfs of Qk Stirling permutations.) Then Bk,i is equal to ...
  27. [27]
    A340556 - OEIS
    ### Summary of A340556: Second-Order Eulerian Numbers
  28. [28]
    On Solutions to a General Combinatorial Recurrence
    ... Lah numbers, Eulerian numbers, and second-order Eulerian numbers, satisfy special cases of this recurrence. Our techniques yield explicit expressions in the ...
  29. [29]
  30. [30]
    [2208.04128] Remixed Eulerian numbers - arXiv
    Aug 8, 2022 · Remixed Eulerian numbers are a polynomial q-deformation of Postnikov's mixed Eulerian numbers, and are symmetric and unimodal as polynomials in ...
  31. [31]
    [2502.04980] Mixed Eulerian numbers and beyond - arXiv
    This paper derives explicit formulas for matroidal mixed Eulerian numbers, resolves a question, and provides a non-recursive formula for mixed Eulerian numbers.
  32. [32]
    [2305.19095] Matroidal Mixed Eulerian Numbers - arXiv
    May 30, 2023 · We make a systematic study of matroidal mixed Eulerian numbers which are certain intersection numbers in the matroid Chow ring generalizing the mixed Eulerian ...Missing: 2025 | Show results with:2025
  33. [33]
    Triangular Recurrences, Generalized Eulerian Numbers, and ... - arXiv
    Jul 20, 2022 · By the method of characteristics, the EGF of any GKP triangle has an implicit representation in terms of the Gauss hypergeometric function.
  34. [34]
    The (α, β)-Eulerian polynomials and descent-Stirling statistics on ...
    In this paper, we introduce a new family of polynomials, Pn(u, v, w, z∣α, β), defined on descent-Stirling statistics of permutations including valleys, exterior ...