This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A273935 #33 Jul 08 2016 17:40:41 %S A273935 1,1,6,84,2160,89280,5443200,460857600,51819264000,7476605337600, %T A273935 1347105779712000,296508121620480000,78297264318873600000, %U A273935 24431729220414996480000,8893692297263669575680000,3735464765667589501747200000,1793050447716486548029440000000 %N A273935 Number of ways to arrange n women and n men around a circular table so that they can be divided into n nonintersecting pairs of 1 woman and 1 man sitting side-by-side. %C A273935 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. %F A273935 a(n) = n!*(n-1)!*(2^n-1) for n>0, a(0) = 1. %F A273935 a(n) = A000142(n)*A000142(n-1)*A000225(n), n >= 1. - _Omar E. Pol_, Jun 16 2016 %e A273935 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): %e A273935 (1,2),(3,4); %e A273935 (1,2),(4,3); %e A273935 1),(3,2),(4; %e A273935 1),(3,4),(2; %e A273935 (1,4),(2,3); %e A273935 (1,4),(3,2). %o A273935 (PARI) a(n) = if (n==0, 1, n!*(n-1)!*(2^n-1)); \\ _Michel Marcus_, Jun 20 2016 %Y A273935 Cf. A000142, A000225, A010790. %K A273935 nonn %O A273935 0,3 %A A273935 _Vincent Chan_, Jun 16 2016