OFFSET
1,1
COMMENTS
The order of every simple group must be a term of this sequence, so A001034 is a subsequence of this sequence. The Dahlke link shows the sequence with 72 and 112 (which are not in this sequence) added.
LINKS
PROG
(PARI) findk(p, n) = {for (k = 1, n, if (((k % p) == 1) && ((n % k) == 0) && ((k! % 2) == 0) && (((k!/2) % n) == 0), return (1)); ); return (0); }
isok(n) = {vp = factor(n)[, 1]~; for (i = 1, #vp, if (! findk(vp[i], n), return (0)); ); return (1); } \\ Michel Marcus, Aug 22 2013
CROSSREFS
KEYWORD
nonn
AUTHOR
James V. Blowers, Apr 25 2011
STATUS
approved