cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-3 of 3 results.

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.

Original entry on oeis.org

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
Offset: 1

Views

Author

Benoit Jubin, Apr 06 2008, Apr 15 2008

Keywords

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.

Examples

			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.
		

Crossrefs

Programs

  • 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

A060817 Size of the automorphism group of the alternating group A_n.

Original entry on oeis.org

1, 1, 2, 24, 120, 1440, 5040, 40320, 362880, 3628800, 39916800, 479001600, 6227020800, 87178291200, 1307674368000, 20922789888000, 355687428096000, 6402373705728000, 121645100408832000, 2432902008176640000
Offset: 1

Views

Author

Ola Veshta (olaveshta(AT)my-deja.com), Apr 29 2001

Keywords

Comments

For all n except n=2, n=3 and n=6, Aut(A_n) is S_n, i.e., a(n) = n!, while Aut(A_2) = S_1, Aut(A_3) = Aut(C_3) = C_2 = S_2 and Aut(A_6) contains S_6 as a subgroup of index 2.

Crossrefs

A063965 Size of the automorphism group of the group S_n x S_n (where S_n is the symmetric group).

Original entry on oeis.org

1, 6, 72, 1152, 28800, 4147200, 50803200, 3251404800, 263363788800, 26336378880000, 3186701844480000, 458885065605120000, 77551576087265280000, 15200108913103994880000
Offset: 1

Views

Author

Ahmed Fares (ahmedfares(AT)my-deja.com), Sep 04 2001

Keywords

Crossrefs

Programs

  • Maple
    a := proc(n) option remember: if n=1 then RETURN(1) fi: if n=2 then RETURN(6) fi: if n=6 then RETURN(4147200) fi: 2*(n!)^2: end: for n from 1 to 30 do printf(`%d,`,a(n)) od:
  • PARI
    { for (n=1, 100, if (n==1, a=1, if (n==2, a=6, if (n==6, a=4147200, a=2*(n!)^2))); write("b063965.txt", n, " ", a) ) } \\ Harry J. Smith, Sep 04 2009

Formula

Except for n = 1, 2, and 6, a(n) = A048617(n) = 2*(n!)^2.

Extensions

More terms from James Sellers, Sep 26 2001
Showing 1-3 of 3 results.