A370949 Triangle read by rows: T(n,k) is the number of forests of labeled rooted Greg hypertrees with n white vertices and k black vertices, 0 <= k < n.
1, 3, 1, 19, 16, 3, 189, 268, 115, 15, 2576, 5221, 3655, 1050, 105, 44683, 118599, 117236, 54040, 11655, 945, 941977, 3102184, 3996384, 2581138, 883575, 152460, 10395, 23388025, 92149019, 147043422, 123318510, 58806055, 15980580, 2297295, 135135
Offset: 1
Examples
Triangle T(n,k) begins: n\k 0 1 2 3 4 ... 1 1; 2 3, 1; 3 19, 16, 3; 4 189, 268, 115, 15; 5 2576, 5221, 3655, 1050, 105; ...
Links
- Paul Laubie, Hypertrees and embedding of the FMan operad, arXiv:2401.17439 [math.QA], 2024.
Programs
-
PARI
T(n)={my(x='x+O('x^(n+1))); [Vecrev(p) | p <- Vec(serlaplace(serreverse( (log(1+x) - y*exp(x) + y*x + y)*exp(-x) )))]} { my(A=T(8)); for(i=1, #A, print(A[i])) } \\ Andrew Howroyd, Mar 06 2024
Comments