OFFSET
1,1
COMMENTS
The numbers in this sequence are called zeta-primes, and they exactly identify when (for n > 4) the set of maximal subgroups of even order fail to cover Alt(n). This is proved in the reference below.
LINKS
B. J. Benesh, D. C. Ernst, and N. Sieben Impartial avoidance and achievement games for generating symmetric and alternating groups, arXiv:1508.03419 [math.CO], 2015.
H. Dubner, Generalized repunit primes, Math. Comp., 61 (1993), 927-930.
PROG
(GAP)
# Primes is a list of the 168 primes below 1000.
primeList:=[];
primeList:=ShallowCopy(Primes);
# Remove {3} and {11, 23}, which are in the 2nd, 5th, and 9th positions, respectively.
Remove(primeList, 9);
Remove(primeList, 5);
Remove(primeList, 2);
# Remove anything that is not 3 mod 4.
primeList:=Filtered(primeList, p->p mod 4 = 3);
# This generates all repunits so that we may remove them from the list of primes.
repunitList:=[];
for q in [2..1000] do
if IsPrimePowerInt(q) then
n:=1;
x:=(q^n-1)/(q-1);
while x < 1000 do
Add(repunitList, x);
n:=n+1;
x:=(q^n-1)/(q-1);
od;
fi;
od;
# Remove repunits from filtered prime list to produce list of zeta-primes
getZeta:=function()
local zlist, p;
zlist:=[];
for p in primeList do
if not p in repunitList then
Add(zlist, p);
fi;
od;
return zlist;
end;
CROSSREFS
KEYWORD
nonn
AUTHOR
Bret Benesh, Mar 11 2016
STATUS
approved