A359313 Triangular array read by rows. T(n,k) is the number of Green's H-classes contained in the D-class of rank k matrices in the semigroup Mat_n(F_2) of n X n matrices over the field F_2. n>=0, 0<=k<=n.
1, 1, 1, 1, 9, 1, 1, 49, 49, 1, 1, 225, 1225, 225, 1, 1, 961, 24025, 24025, 961, 1, 1, 3969, 423801, 1946025, 423801, 3969, 1, 1, 16129, 7112889, 139499721, 139499721, 7112889, 16129, 1, 1, 65025, 116532025, 9439094025, 40315419369, 9439094025, 116532025, 65025, 1
Offset: 0
Examples
1 1, 1 1, 9, 1 1, 49, 49, 1 1, 225, 1225, 225, 1 1, 961, 24025, 24025, 961, 1
References
- R. P. Stanley, Enumerative Combinatorics, Volume I, Second Edition, section 3.18.
Links
- Wikipedia, Green's relations
Programs
-
Mathematica
nn = 8; B[n_, q_] := QFactorial[n, q]^2; e[x_] := Sum[x^n/B[n, 2], {n, 0, nn}]; Map[Select[#, # > 0 &] &, Table[QFactorial[n, 2]^2, {n, 0, nn}] CoefficientList[ Series[e[x] e[y x], {x, 0, nn}], {x, y}]]
Comments