OFFSET
0,3
COMMENTS
a(n) is the number of monotonic paths from (0,0) to (n,n) which are equivalent to a path which is no more than 1 step from the main diagonal, where two paths are equivalent if they are circular shifts of one another.
FORMULA
a(n) = n!*(n-1)!*(2^n-1) for n>0, a(0) = 1.
EXAMPLE
For n = 2: Represent the women and men as the numbers 1,2,3,4, where 1,3 are women and 2,4 are men. Then all 6 arrangements around the circular table are valid (parentheses included to emphasize a valid pairing, including wraparound):
(1,2),(3,4);
(1,2),(4,3);
1),(3,2),(4;
1),(3,4),(2;
(1,4),(2,3);
(1,4),(3,2).
PROG
(PARI) a(n) = if (n==0, 1, n!*(n-1)!*(2^n-1)); \\ Michel Marcus, Jun 20 2016
CROSSREFS
KEYWORD
nonn
AUTHOR
Vincent Chan, Jun 16 2016
STATUS
approved