login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A137316 Array read by rows: T(n,k) is the number of automorphisms of the k-th group of order n, where the ordering is such that the rows are nondecreasing. 2
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, 8, 8, 16, 16, 16, 32, 32, 32, 32, 48, 64, 96, 192, 192, 20160, 16, 6, 12, 48, 54, 432, 18, 8, 20, 24, 40, 40, 12, 42, 10, 110, 22, 8, 16, 16, 24, 24, 24, 24, 24, 24, 48, 48, 48, 48, 144, 336 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
The length of the n-th row is A000001(n).
The largest value of the n-th row is A059773(n).
The number phi(n) = A000010(n) appears in the n-th row.
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
Sequence in context: A061915 A366898 A138565 * A064851 A305353 A134458
KEYWORD
nonn,tabf
AUTHOR
Benoit Jubin, Apr 06 2008, Apr 15 2008
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 18 12:53 EDT 2024. Contains 371780 sequences. (Running on oeis4.)