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-2 of 2 results.

A277566 Irregular table by rows: Orders of subgroups of the symmetric group S_n.

Original entry on oeis.org

1, 1, 2, 1, 2, 3, 6, 1, 2, 3, 4, 6, 8, 12, 24, 1, 2, 3, 4, 5, 6, 8, 10, 12, 20, 24, 60, 120, 1, 2, 3, 4, 5, 6, 8, 9, 10, 12, 16, 18, 20, 24, 36, 48, 60, 72, 120, 360, 720, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 14, 16, 18, 20, 21, 24, 36, 40, 42, 48, 60, 72, 120, 144, 168, 240, 360, 720, 2520, 5040, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 14, 15, 16, 18, 20, 21, 24, 30, 32, 36, 40, 42, 48, 56, 60, 64, 72, 96, 120, 128, 144, 168, 180, 192, 240, 288, 336, 360, 384, 576, 720, 1152, 1344, 1440, 2520, 5040, 20160, 40320
Offset: 1

Views

Author

Keywords

Comments

Each row begins with 1 (the order of the trivial group) and ends with n! (the order of S_n itself).

Examples

			1;
1, 2;
1, 2, 3, 6;
1, 2, 3, 4, 6, 8, 12, 24;
1, 2, 3, 4, 5, 6, 8, 10, 12, 20, 24, 60, 120;
1, 2, 3, 4, 5, 6, 8, 9, 10, 12, 16, 18, 20, 24, 36, 48, 60, 72, 120, 360, 720;
1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 14, 16, 18, 20, 21, 24, 36, 40, 42, 48, 60, 72, 120, 144, 168, 240, 360, 720, 2520, 5040;
1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 14, 15, 16, 18, 20, 21, 24, 30, 32, 36, 40, 42, 48, 56, 60, 64, 72, 96, 120, 128, 144, 168, 180, 192, 240, 288, 336, 360, 384, 576, 720, 1152, 1344, 1440, 2520, 5040, 20160, 40320;
		

Crossrefs

Row lengths are given by A218913.
See A243748 for a closely related sequence.

Programs

  • GAP
    LoadPackage("sonata");
    a := function(n)
      return Length(Unique(Apply(Subgroups(SymmetricGroup(n)), Size)));
    end;; # Charles R Greathouse IV, Nov 28 2016

A284210 Number of subgroups of order n of the symmetric group Sym(n) on n symbols.

Original entry on oeis.org

1, 1, 1, 7, 6, 280, 120, 25335, 11200, 276696, 362880, 374838255, 39916800, 2414617920, 11721790080
Offset: 1

Views

Author

Jens Voß, Mar 23 2017

Keywords

Comments

The diagonal of A243748. - R. J. Mathar, Mar 30 2017 [edited by Peter Munn, Mar 06 2025]

Examples

			The group Sym(4) contains 3 cyclic groups of order 4, 3 non-normal elementary abelian groups of order 4 and one normal group of order 4, so A284210(4) = 3 + 3 + 1 = 7.
		

Programs

  • GAP
    List([1..14], n -> Sum(List(Filtered(ConjugacyClassesSubgroups(SymmetricGroup(n)), c -> Size(Representative(c)) = n)), c -> Size(c)));

Formula

If n is prime, A284210(n) = (n-2)!.
Showing 1-2 of 2 results.