OFFSET
0,2
COMMENTS
Also the number of inequivalent 2n X 2n {0,1} matrices with distinct rows and equal numbers of 0's and 1's, modulo permutation of the rows. a(1) = 2: [00/11], [01/10].
LINKS
Alois P. Heinz, Table of n, a(n) for n = 0..30
FORMULA
a(n) = A360693(2n,2n^2).
EXAMPLE
a(0) = 1: {}.
a(1) = 2: {aa,bb}, {ab,ba}.
MAPLE
g:= proc(n, i, j) option remember; expand(`if`(j=0, 1, `if`(i<0, 0, add(
g(n, i-1, j-k)*x^(i*k)*binomial(binomial(n, i), k), k=0..j))))
end:
a:= n-> coeff(g(2*n$3), x, 2*n^2):
seq(a(n), n=0..10);
CROSSREFS
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Feb 16 2023
STATUS
approved