cp's OEIS Frontend

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.

A360702 Number of sets of 2n words of length 2n over binary alphabet where each letter occurs 2n^2 times.

Original entry on oeis.org

1, 2, 394, 10247250, 41192135957378, 26708408307353573010350, 3044454667114388718324075325130428, 65233919825974729088553743803268484284650384722, 275236371094876077407367002758415347571615535684540339803854604
Offset: 0

Views

Author

Alois P. Heinz, Feb 16 2023

Keywords

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].

Examples

			a(0) = 1: {}.
a(1) = 2: {aa,bb}, {ab,ba}.
		

Crossrefs

Programs

  • 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);

Formula

a(n) = A360693(2n,2n^2).