OFFSET
1,4
COMMENTS
T(n,k) is also the dimension of the operad FMan in arity n with k commutative products.
The sum of each row is n^(n-1).
LINKS
Andrew Howroyd, Table of n, a(n) for n = 1..1275 (rows 1..50)
Paul Laubie, Hypertrees and embedding of the FMan operad, arXiv:2401.17439 [math.QA], 2024.
FORMULA
T(n,0) = (n-1)!.
T(n,n-1) = 1.
EXAMPLE
Triangle T(n,k) begins:
n\k 0 1 2 3 4 ...
1 1;
2 1, 1;
3 2, 6, 1;
4 6, 35, 22, 1;
5 24, 225, 310, 65, 1;
...
PROG
(PARI) T(n) = my(x='x+O('x^(n+1))); [Vecrev(p) | p<-Vec(serlaplace( serreverse((exp(log(1+x*y)/y)-1)*exp(-x) )))]
{my(A=T(10)); for(n=1, #A, print(A[n]))} \\ Andrew Howroyd, Oct 20 2023
CROSSREFS
KEYWORD
AUTHOR
Paul Laubie, Oct 20 2023
STATUS
approved