A034383 Number of labeled groups.
1, 2, 3, 16, 30, 480, 840, 22080, 68040, 1088640, 3991680, 259459200, 518918400, 16605388800, 163459296000, 10353459916800, 22230464256000, 1867358997504000, 6758061133824000, 648773868847104000, 5474029518397440000, 122618261212102656000
Offset: 1
Keywords
Links
- Stephen A. Silver, Table of n, a(n) for n = 1..255
- H. U. Besche, The Small Groups library
- Math Stack Exchange, Known bounds for the number of groups of a given order.
- Index entries for sequences related to groups
Programs
-
GAP
A034383 := function(n) local fn, sum, k; fn := Factorial(n); sum := 0; for k in [1 .. NrSmallGroups(n)] do sum := sum + fn / Size(AutomorphismGroup(SmallGroup(n,k))); od; return sum; end; # Stephen A. Silver, Feb 10 2013
Formula
a(n) = n * A058163(n).
a(n) = Sum n!/|Aut(G)|, where the sum is taken over the different products G of cyclic groups with |G| = n.
Extensions
More terms from Stephen A. Silver, Feb 10 2013
Comments