OFFSET
0,4
COMMENTS
See A049323.
LINKS
Paolo Xausa, Table of n, a(n) for n = 0..11475 (rows 0..150 of triangle, flattened).
Wolfdieter Lang, On generalizations of the Stirling number triangles, J. Integer Seqs., Vol. 3 (2000), #00.2.4.
Thierry Lévy, The Number of Prefixes of Minimal Factorisations of a Cycle, The Electronic Journal of Combinatorics, 23(3) (2016), #P3.35.
FORMULA
a(n, m) = binomial(n+1, m)*(n+1)^(n-m-1), n >= m >= 0 else 0.
EXAMPLE
Triangle begins:
{1};
{1,1};
{3,3,1};
{16,16,6,1};
{125,125,50,10,1};
...
E.g. third row {3,3,1} corresponds to polynomial p(2,x)= 3*x^2+3*x+1.
MATHEMATICA
A033842[n_, m_] := Binomial[n + 1, m]*(n + 1)^(n - m - 1);
Table[A033842[n, m], {n, 0, 10}, {m, 0, n}] (* Paolo Xausa, Sep 28 2025 *)
CROSSREFS
KEYWORD
AUTHOR
STATUS
approved
