OFFSET
1,2
COMMENTS
Two subgroups are considered to be isomorphic here if they are isomorphic as abstract groups, not as permutation groups. - N. J. A. Sloane, Nov 28 2010
LINKS
Andreas Distler and Tom Kelsey, The semigroups of order 9 and their automorphism groups, arXiv preprint arXiv:1301.6023 [math.CO], 2013. - From N. J. A. Sloane, Feb 19 2013
Jeffrey Ketchersid, Verification scripts, isomorphisms, and invariants for a(14)-a(15), GitHub, 2026.
Jeffrey Ketchersid, Verification scripts, isomorphisms, and invariants for a(16), GitHub, 2026.
Jeffrey Ketchersid, Verification scripts, isomorphisms, and invariants for a(17), GitHub, 2026.
Jack Schmidt, Enumerating all subgroups of the symmetric group.
EXAMPLE
a(3) = 4 since S_3 contains up to isomorphism exactly one subgroup of each of the orders 1,2,3,6.
PROG
(GAP)
a:=[];
for n in [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] do
G:=SymmetricGroup(n);
R:=ConjugacyClassesSubgroups(G);
RR:=ListX(R, Representative);
T:=[RR[1]];
for g in RR do
flag:=false;
for h in T do
if IsomorphismGroups(g, h)<>fail then
flag:=true;
break;
fi;
od;
if flag=false then Add(T, g); fi;
od;
Add(a, Size(T));
od;
Print(a, "\n");
CROSSREFS
KEYWORD
nonn,more
AUTHOR
W. Edwin Clark, Nov 28 2010
EXTENSIONS
a(11) and a(12) from Stephen A. Silver, Feb 24 2013
a(13) (as calculated by Jack Schmidt) from L. Edson Jeffery, May 26 2013
a(14)-a(15) from Jeffrey Ketchersid, Feb 13 2026
a(16) added by Jeffrey Ketchersid, Mar 05 2026
a(17) added by Jeffrey Ketchersid, Apr 08 2026
STATUS
approved
