OFFSET
1,4
REFERENCES
The special case m(n,n) appears in: Flajolet, P. and Noy, M., "Analytic Combinatorics of Chord Diagrams", INRIA Research Report, ISRN INRIA/RR-3914-FR+ENG, March 2000.
LINKS
FORMULA
T(n,k)=(2*n)! / ((2*n-2*k)!*k!*2^k).
EXAMPLE
For example, T(3,2) is the number of matchings composed of any two edges of the complete graph on 6 vertices. Then T(3,2) = a(3*(3+1)/2+2) = a(8) = 45. Similarly, T(2,2)=a(5)=3 since the only matchings of size 2 on the K_4 are {{0,1},{2,3}}, {{0,3}{1,2}} and {{0,2},{1,3}}.
MATHEMATICA
Table[(2n)!/((2n-2k)!k! 2^k), {n, 10}, {k, 0, n}]//Flatten (* Harvey P. Dale, Aug 11 2019 *)
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Swapnil P. Bhatia (sbhatia(AT)cs.unh.edu), Jul 29 2006
STATUS
approved