login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 


A076379
n!-x!+1 is never prime for x<n.
1
1, 15, 22, 27, 28, 36, 43, 45, 48, 50, 52, 58, 60, 63, 64, 67, 70, 77, 80, 82, 83, 84, 85, 86, 97, 104, 110, 113, 120, 124, 125, 129, 131, 135, 136, 138, 140, 147, 158, 161, 164, 171, 173, 174, 183, 185, 189, 192, 195, 199
OFFSET
1,2
MATHEMATICA
Select[Range[200], NoneTrue[Table[#!-x!+1, {x, #-1}], PrimeQ]&] (* Harvey P. Dale, Sep 12 2022 *)
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
Cf. A076378.
Sequence in context: A115174 A092783 A108638 * A227095 A038753 A006615
KEYWORD
nonn
AUTHOR
Jon Perry, Oct 08 2002
EXTENSIONS
More terms from Harvey P. Dale, Sep 12 2022
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | 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 September 23 00:23 EDT 2024. Contains 376140 sequences. (Running on oeis4.)