OFFSET
0,3
COMMENTS
This is the q=1 member of the q-family of sequences F_q(n), defined as the number of (n+2q) X (n+2q) symmetric matrices with nonnegative integer entries, trace 0, with n rows that sum to 2, and 2q rows that sum to 1. It is relevant to the counting of dipole graphs as is discussed in the paper whose link is given below. The q=0 member of this family is the sequence A002137.
LINKS
Stefano Frixione and Bryan R. Webber, The role of colour flows in matrix element computations and Monte Carlo simulations, arXiv:2106.13471 [hep-ph], 2021.
FORMULA
E.g.f.: exp(x^2/4-x/2)/(1-x)^(3/2).
MATHEMATICA
genF=Exp[-y/2+y^2/4]/Sqrt[1-2*x-y];
(* seq[q, N] gives {F_q(0), ...F_q(N)} for any integers q and N *)
seq[q_, N_]:=Table[D[D[genF, {x, q}], {y, n}]/.{x->0, y->0}, {n, 0, N}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Stefano Frixione, Jun 30 2021
STATUS
approved