OFFSET
1,1
COMMENTS
There are no values of n such that prime(k)*n+prime(k+1), k=1,...,9 are all prime. See A108117 for a proof.
EXAMPLE
5600384 is OK because 2*5600384+3, 3*5600384+5, 5*5600384+7, 7*5600384+11, 11*5600384+13, 13*5600384+17, 17*5600384+19 and 19*5600384+23 all are primes.
PROG
(PARI) \\ See isok from A108117
for(n=1, 2*10^9, if(isok(n, 8), print1(n", ")))
CROSSREFS
KEYWORD
nonn,new
AUTHOR
Jason Yuen, Dec 22 2024
STATUS
approved