OFFSET
1,1
COMMENTS
Conjecture: there are infinitely many such primes.
MAPLE
q:= 2; R:= NULL: count:= 0:
while count < 100 do
p:= q;
q:= nextprime(q);
v:= p*q*(q-p)-1;
if isprime(v) then R:= R, v; count:= count+1 fi;
od:
R; # Robert Israel, May 11 2025
MATHEMATICA
CROSSREFS
KEYWORD
nonn
AUTHOR
Clark Kimberling, May 07 2025
STATUS
approved
