OFFSET
1,4
COMMENTS
For n > 5, the largest conjugacy class in A_n corresponds to the cycle type (n-2, 2) if n is even, (n-3, 2, 1) if n is odd. - Eric M. Schmidt, Sep 13 2014
LINKS
Eric M. Schmidt, Table of n, a(n) for n = 1..100
FORMULA
For n > 5, a(n) = n!/(2(n-2)) if n is even, a(n) = n!/(2(n-3)) if n is odd. - Eric M. Schmidt, Sep 13 2014
PROG
(GAP)
a:=function(n)
local G, CC, SCC, SCC1;
G:=AlternatingGroup(n);
CC:=ConjugacyClasses(G);;
SCC:=List(CC, Size);
return Maximum(SCC);
end;; # W. Edwin Clark, Feb 02 2014
CROSSREFS
KEYWORD
nonn
AUTHOR
Sharon Sela (sharonsela(AT)hotmail.com), May 14 2002
EXTENSIONS
More terms from Eric M. Schmidt, Sep 13 2014
STATUS
approved