OFFSET
0,4
LINKS
E. de Panafieu and S. Dovgal, Symbolic method and directed graph enumeration, arXiv:1903.09454 [math.CO], 2019.
R. P. Stanley, Acyclic orientation of graphs, Discrete Math. 5 (1973), 171-178.
FORMULA
Sum_{n>=0} T(n,k)*y^k*x^n/(2^binomial(n,2)*n!) = 1/E(-y*x)*1/E(-x) where E(x) = Sum_{n>=0} x^n/(2^binomial(n,2)*n!).
EXAMPLE
Triangle T(n,k) begins:
1;
1, 1;
3, 4, 3;
25, 36, 36, 25;
543, 800, 864, 800, 543;
29281, 43440, 48000, 48000, 43440, 29281;
...
MATHEMATICA
nn = 6; B[n_] := n! 2^Binomial[n, 2]; e[z_] := Sum[z^n/B[n], {n, 0, nn}]; Map[Select[#, # > 0 &] &, Table[B[n], {n, 0, nn}] CoefficientList[Series[1/e[-u z]*1/e[-z], {z, 0, nn}], {z, u}]] // Grid
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Geoffrey Critzer, Jan 21 2025
STATUS
approved
