OFFSET
1,2
MATHEMATICA
nevpQ[n_]:=Module[{nf1=n!-1}, And@@(!PrimeQ[#]&)/@Table[nf1-x!, {x, n-1}]]; Select[Range[200], nevpQ] (* Harvey P. Dale, May 14 2011 *)
PROG
(PARI) for (a=1, 100, c=0; for (b=1, a-1, if (b%2<>a%2, continue); if (isprime(a!-b!-1), c=1; break)); if (c==0, print1(a, ", ")))
CROSSREFS
KEYWORD
nonn
AUTHOR
Jon Perry, Oct 08 2002
EXTENSIONS
More terms from Harvey P. Dale, May 14 2011.
STATUS
approved