A261639 Values of n such that prime(n+1)!/prime(n) + 1 is a prime number.
2, 3, 4, 5, 19, 110
Offset: 1
Examples
For n=2 the (prime(n+1)! / prime(n)) + 1 = 41. 41 is prime.
Crossrefs
Cf. A260754.
Programs
-
PARI
for(n=1, 1e3, if(isprime(k=((prime(n+1)!/prime(n))+1)), print1(n", ")))
Comments