A338853 List of numbers k > 1 such that there exists a group of order k without nontrivial normal Sylow subgroups.
24, 48, 60, 72, 96, 120, 144, 160, 168, 180, 192, 216, 240, 288, 300, 320, 324, 336, 360, 384, 432, 480, 504, 540, 576, 600, 640, 648, 660, 672, 720, 768, 784, 800, 840, 864, 896, 900, 960, 972, 1008, 1053, 1080, 1092, 1152, 1176, 1200, 1280, 1296, 1320, 1344, 1440
Offset: 1
Keywords
Examples
All the normal subgroups of S_4 (symmetric group of degree 4, order 24) are the trivial group, the Klein four-group (order 4), A_4 (alternating group of degree 4, order 12) and S_4 itself. None of these is a Sylow 2-subgroup or a Sylow 3-subgroup. So 24 is a term. All the normal subgroups of SmallGroup(1053,51) are the trivial group, C_3 X C_3 X C_3 (order 27), SmallGroup(351,12) and SmallGroup(1053,51) itself. None of these is a Sylow 3-subgroup or a Sylow 13-subgroup. So 1053 is a term. In fact, 1053 is the smallest odd term. [As a result, every number of the form 1053 * 3^a * 13^b with nonnegative a,b is a term, showing that there are infinitely many odd terms in this sequence. What is the smallest odd term not of this form? - _Jianing Song_, Sep 08 2021]
Links
- Jianing Song, Table of n, a(n) for n = 1..66
- The Group Properties Wiki, Sylow subgroup
- The Group Properties Wiki, Schur-Zassenhaus theorem
- Index entries for sequences related to groups
Programs
-
GAP
HasNoSylow := function(G) local c, l, i; c := FactInt(Size(G))[1]; l := Length(c); if c[1] = c[l] then # |G| is 1 or a prime power return false; else for i in [1..l] do if IsNormal(G, SylowSubgroup(G, c[i])) then return false; fi; od; return true; fi; end; IsA338853 := function(n) local c, l, i; c := FactInt(n)[1]; l := Length(c); if c[1] = c[l] then # |G| is 1 or a prime power return false; else i := NumberSmallGroups(n); while i > 0 do if(HasNoSylow(SmallGroup(n,i))) then return true; fi; i := i-1; od; return false; fi; end;
Comments