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!)
A370423 Integers k such that the maximum number of subgroups of a group of order k is exactly k. 0
1, 2, 6, 28, 260 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Intersection of A368538 and A370422. Difference of A370422 and A370421.
a(6) > 2000 if it exists.
LINKS
PROG
(Magma) \\ to get the terms up to 1023.
i:=1;
while i lt 1024 do // terms up to 1023
allGroupsHaveLessThanOrEqualNumberOfSubgroups:=1;
someGroupWithExactNumberOfSubgroups:=0;
j:=1;
while j le NumberOfSmallGroups(i) do //iterate through all the groups of order i
G:=SmallGroup(i, j);
if #AllSubgroups(G) eq i then
someGroupWithExactNumberOfSubgroups:=1;
end if;
if #AllSubgroups(G) gt i then //some group has > i subgroups
allGroupsHaveLessThanOrEqualNumberOfSubgroups:=0;
break;
end if;
j:=j+1;
end while;
if allGroupsHaveLessThanOrEqualNumberOfSubgroups eq 1 and someGroupWithExactNumberOfSubgroups eq 1 then
i;
end if;
i:=i+1;
end while;
CROSSREFS
Sequence in context: A355208 A002047 A126340 * A355768 A277480 A108800
KEYWORD
nonn,more
AUTHOR
Robin Jones, Feb 18 2024
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 5 22:26 EDT 2024. Contains 373110 sequences. (Running on oeis4.)