I don't know if this is a known problem, but I didn't find any similar question.
Let's do some example to explain what I'm searching.
- Take n=10. We have p=3 odd prime number and also p+n=3+10=13 prime, so n=10 is not valid
- Take n=30. We have p=7 odd prime number and also p+n=7+30=37 prime, so n=30 is not valid
- Take n=138. We have p=11 odd prime number and also p+n=11+138=149 prime, so n=138 is not valid
I wonder if there exist an even positive integer n such that, for each odd prime number p, p+n is not itself a prime.
The challenge is to prove that such an integer must exist, or prove that it cannot exist at all.
Any answers or comments will be appreciated.