A379755 Orders k of groups where at least one group has a simple automorphism group.
3, 4, 6, 8, 16, 32, 64, 128, 256, 512, 1024
Offset: 1
Examples
3 is a term since Aut(C_3) = C_2, which is simple. 8 is a term since Aut(C_2 x C_2 x C_2) = PSL(3,2), which is simple. 7920 is a term since Aut(M_11) = M_11, which is simple. (M_11 is one of the Mathieu groups).
Programs
-
GAP
A:=[]; for n in [1..100] do if n>=8 and Unique(Factors(n))=[2] then A:=Concatenation(A,[n]); continue; fi; for i in [1..NrSmallGroups(n)] do G:=SmallGroup(n,i); if IsAbelian(G)=false and Order(Centre(G))>1 then continue; fi; Aut:=AutomorphismGroup(G); if IsSimpleGroup(Aut)=true then A:=Concatenation(A,[n]); break; fi; od; od; Print(A);
Formula
2^m is a term for m >= 3. This is because every elementary abelian group of order 2^m has the projective special linear group PSL(m,2) as an automorphism group, which is simple for every such m.
Comments