A343474 a(n) is the number of preference profiles for n men and n women, where all men prefer the same woman and all women prefer the same man.
1, 4, 576, 26873856, 1585084524134400, 320979616137216000000000000, 493004666484778531821296025600000000000000, 11093499218496894899774404870401368262117949440000000000000000
Offset: 1
Keywords
Examples
When n=2, there are 4 ways to pick a man and woman who are preferred by all people of the opposite gender, and then 1 way to fill in each of the remaining slots in every person's preference profile. So, there are 4 different preference profiles.
Links
- Matvey Borodin, Eric Chen, Aidan Duncan, Tanya Khovanova, Boyan Litchev, Jiahe Liu, Veronika Moroz, Matthew Qian, Rohith Raghavan, Garima Rastogi, and Michael Voigt, Sequences of the Stable Matching Problem, arXiv:2201.00645 [math.HO], 2021.
Programs
-
Mathematica
Table[n^2 (n - 1)!^(2n), {n, 10}]
Comments