login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A335361
Prime numbers p such that p!*i + 1 is composite for i = 1..p.
0
67, 157, 269, 379, 419, 443, 449, 509, 541, 577, 743, 769, 859, 863, 929, 937, 1009, 1087, 1163, 1213, 1217, 1367, 1381, 1481, 1579, 1733, 1747, 1753, 1783, 1787, 1877, 1901, 1997, 2153
OFFSET
1,1
COMMENTS
Primes in A335233.
MATHEMATICA
Select[Prime@ Range@ 100, (f = #!; NoneTrue[f*Range[#] + 1, PrimeQ ]) &] (* Robert Price, Sep 14 2020 *)
PROG
(Python)
from sympy import isprime, nextprime, factorial
A335361_list, p = [], 2
while p < 500:
f, g = factorial(p), 1
for i in range(1, p+1):
g += f
if isprime(g):
break
else:
A335361_list.append(p)
p = nextprime(p)
(PARI) is(p) = if(isprime(p), for(i=1, p, if(ispseudoprime(i*p!+1), return(0))); 1, 0); \\ Jinyuan Wang, Jun 21 2020
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Chai Wah Wu, Jun 10 2020
EXTENSIONS
a(34) from Jinyuan Wang, Jun 21 2020
STATUS
approved