A309933 Table read by rows: T(n,k) is the number of stable marriage instances with n men and n+1 women in which some "rejecting" woman receives exactly k proposals.
1, 1, 1, 48, 72, 24, 746496, 1347840, 756864, 134784
Offset: 0
Examples
The first row corresponds to n=0, where there is a unique instance with 0 men and 1 woman (and the woman gets no proposals). The second row concerns stable marriage instances with 1 man and 2 women. There are two such instances (the man chooses either of the women as his top choice). In one of them, the rejecting woman gets a proposal (T(1,1) = 1) and in the other she does not (T(1,0) = 1). The third row has 2 men and 3 women. The men's and the first two women's preference lists are uniform over all permutations of the other side. The final woman has no list and rejects all proposals. Thus there are 6^2*2^2 = 144 total instances. In 48 of these instances, the rejecting woman receives no proposals. In 72, she receives one, and in 24, she receives two (one from each man). The table begins: n | k = 0 1 2 3 --+--------------------------------- 0 | 1; 1 | 1, 1; 2 | 48, 72, 24; 3 | 746496, 1347840, 756864, 134784; ...
Formula
Sum_{k=0..n} T(n,k) = ((n+1)!*n!)^n.
Comments