OFFSET
1,1
COMMENTS
Equivalently, orders k of groups G where a G exists as a direct product of isomorphic simple groups.
A group G is characteristically simple if it contains no characteristic proper subgroups (a subgroup which is invariant under every automorphism of G). Since a finite group is characteristically simple if and only if it is a direct product of isomorphic simple groups, G is characteristically simple if and only if it is an elementary abelian group or a direct product of isomorphic nonabelian simple groups.
LINKS
Miles Englezou, Table of n, a(n) for n = 1..10000
Wikipedia, Characteristically simple group
EXAMPLE
5 is a term since C_5 is prime cyclic and contains no proper subgroups. Therefore it contains no characteristic proper subgroups.
60 is a term since the alternating group A_5 is simple and contains no normal subgroups. Therefore it contains no characteristic proper subgroups.
3600 is a term since the direct product A_5 x A_5, though it contains A_5 twice as a normal subgroup and is therefore not simple, it contains no characteristic proper subgroups.
PROG
(GAP)
isok := function(G)
if Order(G) = 1 then
return false;
elif IsElementaryAbelian(G) then
return true;
elif IsSimpleGroup(G) then
return true;
else
for K in AllSubgroups(G) do
if IsCharacteristicSubgroup(G, K) then
return false;
fi;
od;
return true;
fi;
end;
CROSSREFS
KEYWORD
nonn
AUTHOR
Miles Englezou, Jun 15 2025
STATUS
approved
