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!)
A321224 Sporadic numbers: n is defined to be sporadic if the set of groups G not in {A_n, S_n} and having a core-free maximal subgroup of index n is nonempty and contains only sporadic simple groups. 1
266, 506, 759, 1045, 1288, 1463, 3795 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
A finite group G has a core-free maximal subgroup H of index n if and only if it is a primitive permutation group of degree n (acting on the set G/H of cosets).
There are no other sporadic numbers less than 4096 (see computation below).
According to Derek Holt, the next sporadic number is 4180, and the last one should be 492693551703971265784426771318116315247411200000000 (coming from the maximal subgroup 41:40 of the Monster, and assuming that L_2(13) is not maximal).
Derek Holt suggested another sequence where we also allow the extensions of the sporadic simple groups.
REFERENCES
The GAP Group, GAP - Groups, Algorithms, and Programming, Version 4.9.3, 2018. gap-system.org.
LINKS
S. Palcoux, The sporadic numbers (version: 2019-07-22), MathOverflow.
PROG
(GAP)
IsSporadic:=function(G)
if not IsSimple(G) then
return false;
else
return IsomorphismTypeInfoFiniteSimpleGroup(G).series="Spor";
fi;
end;;
SporadicNumbers:=function(b1, b2)
local L, i, n, a, j, G;
L:=[];
for i in [b1..b2] do
n:=NrPrimitiveGroups(i);
if n>2 then
a:=0;
for j in [1..n] do
G:=PrimitiveGroup(i, j);
if not G=SymmetricGroup(i) and not G=AlternatingGroup(i) and not IsSporadic(G) then
a:=1;
break;
fi;
od;
if a=0 then
Add(L, i);
fi;
fi;
od;
return L;
end;;
SporadicNumbers(1, 4095);
# gives: [ 266, 506, 759, 1045, 1288, 1463, 3795 ]
CROSSREFS
Sequence in context: A091676 A061662 A348657 * A028528 A260134 A242320
KEYWORD
nonn,fini,more
AUTHOR
Sébastien Palcoux, Aug 27 2019
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 April 23 09:48 EDT 2024. Contains 371905 sequences. (Running on oeis4.)