OFFSET
1,3
COMMENTS
LINKS
D. MacHale and R. Sheehy, Finite groups with few automorphisms, Math. Proc. Roy. Irish Acad., 104A(2) (2004), 231--238.
EXAMPLE
The table begins as follows:
1
1
2
2 6
4
2 6
6
4 8 8 24 168
6 48
4 20
10
4 12 12 12 24
12
6 42
The first row with two numbers corresponds to the two groups of order 4, the cyclic group Z_4 and the Klein group Z_2 x Z_2, whose automorphism groups are respectively the group (Z_4)^* = Z_2 and the symmetric group S_3.
PROG
(GAP) # GAP 4
Print("\n") ;
for o in [ 1 .. 33 ] do
n := NumberSmallGroups(o) ;
og := [] ;
for i in [1 .. n] do
g := SmallGroup(o, i) ;
H := AutomorphismGroup(g) ;
ho := Order(H) ;
Add(og, ho) ;
od;
Sort(og) ;
Print(og) ;
Print("\n") ;
od; # R. J. Mathar, Jul 13 2013
CROSSREFS
KEYWORD
nonn,tabf
AUTHOR
Benoit Jubin, Apr 06 2008, Apr 15 2008
STATUS
approved