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”).

A335233
Numbers m such that m!*i + 1 is composite for i = 1..m.
2
50, 66, 67, 76, 81, 110, 117, 120, 122, 157, 178, 183, 217, 219, 226, 235, 240, 242, 244, 250, 254, 260, 266, 269, 274, 275, 287, 289, 309, 326, 346, 354, 363, 379, 380, 386, 400, 407, 410, 417, 419, 443, 449, 451, 470, 474, 489, 493, 509, 513, 518, 541, 543
OFFSET
1,1
COMMENTS
If m is a term, then A321805(m) = 0.
LINKS
MATHEMATICA
Select[Range@ 200, (f = #!; NoneTrue[f*Range[#] + 1, PrimeQ]) &] (* Robert Price, Sep 14 2020 *)
PROG
(Python)
from sympy import isprime
A335233_list, f = [], 1
for k in range(1, 100):
f *= k
g = 1
for i in range(1, k+1):
g += f
if isprime(g):
break
else:
A335233_list.append(k)
CROSSREFS
Cf. A321805.
Sequence in context: A007692 A025285 A092541 * A180103 A102803 A224559
KEYWORD
nonn
AUTHOR
Chai Wah Wu, Jun 09 2020
STATUS
approved