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

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
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 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Primes in A335233.
LINKS
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
Sequence in context: A044699 A142223 A033233 * A142323 A044399 A044780
KEYWORD
nonn,more
AUTHOR
Chai Wah Wu, Jun 10 2020
EXTENSIONS
a(34) from Jinyuan Wang, Jun 21 2020
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | 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 April 18 17:56 EDT 2024. Contains 371781 sequences. (Running on oeis4.)