The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A368538 Integers k such that there exists a group of order k with exactly k subgroups. 3
1, 2, 6, 8, 28, 40, 48, 54, 72, 96, 100, 104, 128, 132, 144, 160, 176, 180, 192, 216, 240, 252, 260, 288, 324, 336, 368, 384, 416, 456, 480, 496 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Powers of 4 cannot appear in this sequence. This is because for a group of order p^n, the number of subgroups of order p^k is congruent to 1 mod p, for 0 <= k <= n. It follows from p=2 and Lagrange's theorem that the number of subgroups of order 2^n for n even is congruent to 1 mod 2, i.e. not equal to 2^n. - Robin Jones, Feb 17 2024
a(33) >= 512. The smallest term strictly larger than 512 is 560. -Robin Jones, Feb 18 2024
LINKS
EXAMPLE
1 is a term since the trivial group (order 1) has exactly 1 subgroup.
2 is a term since the cyclic group C_2 has exactly 2 subgroups.
6 is a term since the symmetric group S_3 has exactly 6 subgroups.
PROG
(Magma, to get the terms up to 100)
i:=1;
while i lt 100 do // terms up to 100
for G in SmallGroups(i) do
if #AllSubgroups(G) eq i then
i; break;
end if;
; end for;
i:=i+1;
end while;
CROSSREFS
Sequence in context: A180814 A290679 A290423 * A272614 A210737 A140539
KEYWORD
nonn,more
AUTHOR
Robin Jones, Dec 29 2023
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified June 6 00:30 EDT 2024. Contains 373110 sequences. (Running on oeis4.)