OFFSET
0,5
REFERENCES
Miklos Bona, Introduction to Enumerative and Analytic Combinatorics, CRC Press, 2025, pp. 159-160.
LINKS
Stefano Spezia, Table of n, a(n) for n = 0..5049 (first 100 rows of the triangle, flattened)
FORMULA
T(n,k) = n! * [x^n] 1/(1 - x^k/(1 - x)) with 0 <= k <= n.
EXAMPLE
The triangle begins as:
1;
0, 1;
0, 4, 2;
0, 24, 6, 6;
0, 192, 48, 24, 24;
0, 1920, 360, 120, 120, 120;
0, 23040, 3600, 1440, 720, 720, 720;
...
MATHEMATICA
T[n_, k_]:=n!SeriesCoefficient[1/(1-x^k/(1-x)), {x, 0, n}]; Table[T[n, k], {n, 0, 9}, {k, 0, n}]//Flatten
CROSSREFS
KEYWORD
AUTHOR
Stefano Spezia, Mar 28 2026
STATUS
approved
