login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A066051
Maximal degree of an irreducible representation of the group of n X n signed permutation matrices.
5
1, 2, 3, 8, 20, 80, 210, 672, 2688, 10080, 44352, 236544, 960960, 4324320, 20270250, 104247000, 522762240, 3024552960, 15713497800, 108973522944, 625746401280, 3824005785600, 24049411386000, 160329409240000, 858907549500000, 5226869622374400
OFFSET
1,2
COMMENTS
This group is also the automorphism group of the n-dimensional hypercube and the wreath product of the cyclic group C_2 and the symmetric group S_n.
The number of irreducible representations is given in A000712; the order of the group in A000165.
The group is also the Weyl group of type B_n. - Eric M. Schmidt, Sep 21 2013
REFERENCES
Roger W. Carter, Finite Groups of Lie Type: Conjugacy Classes And Complex Characters. Wiley, 1985.
LINKS
PROG
(GAP) to produce a(8): c := CyclicGroup(2); s := SymmetricGroup(8); w := WreathProduct(c, s); Display(CharacterTable(w));
(Sage) def A066051(n) : return factorial(n) // min(prod(A.hooks()) * prod(B.hooks()) for (A, B) in PartitionTuples(2, n)) # Eric M. Schmidt, Sep 21 2013
CROSSREFS
KEYWORD
nonn,nice
AUTHOR
Sharon Sela (sharonsela(AT)hotmail.com), Dec 29 2001
EXTENSIONS
More terms from Eric M. Schmidt, Sep 21 2013
STATUS
approved