A211391 The number of divisors d of n! such that d < A000793(n) (Landau's function g(n)) and the symmetric group S_n contains no elements of order d.
0, 0, 0, 0, 0, 0, 2, 2, 2, 6, 4, 15, 15, 24, 29, 33, 63, 55, 126, 117, 110, 103, 225, 212, 288, 282, 319, 428, 504, 774, 859, 943, 924, 1336, 1307, 1681, 1869, 2097, 2067, 2866, 3342, 3487, 5612, 5567, 5513, 5549, 9287, 9220, 11594, 11524, 11481, 11403, 18690
Offset: 1
Keywords
Examples
For n = 7, we refer to the following table: Symmetric Group on 7 letters. # of elements of order 1 -> 1 # of elements of order 2 -> 231 # of elements of order 3 -> 350 # of elements of order 4 -> 840 # of elements of order 5 -> 504 # of elements of order 6 -> 1470 # of elements of order 7 -> 720 # of elements of order 8 -> 0 # of elements of order 9 -> 0 # of elements of order 10 -> 504 # of elements of order 12 -> 420 (All other divisors of 7! -> 0.) So there are two missing element orders in S_7, whence a(7) = 2.
Crossrefs
Programs
-
Magma
for n in [1..25] do D := Set(Divisors(Factorial(n))); O := { LCM(s) : s in Partitions(n) }; L := Max(O); N := D diff O; #{ n : n in N | n lt L }; end for;
Extensions
More terms from Alois P. Heinz, Feb 11 2013
Comments