Find all natural numbers $n$ such that $n+1$, $n+5$, $n+7$, $n+11$, $n+13$, $n+17$, $n+23$ are all prime.
So far I've made the following progress on this problem:
a) n must be even. Otherwise some of the $n+x$ numbers would be even (since all $x$s are odd), and therefore not prime (they can't all be $2$).
b) Analyzing $n \mod 3$, it's possible to deduce that $n$ must in fact be divisible with $3$.
If $n ≡ 1 (mod 3)$, then $n + 5$ would be divisible by $3$, and therefore not a prime.
If $n ≡ 2 (mod 3)$, then $n + 1$ would be divisible by $3$, and therefore not a prime.
c) A similar analysis of $n \mod 5$ reveals that the only viable option would be $n ≡ 1 (mod 5)$. For any other option one of the numbers would be divisible by $5$.
Therefore, $n$ could end in either $1$ or $6$, but since it must be even (point a), then it always ends in $6$.
This leaves as candidates all numbers $6$, $36$, $66$, $96$, $126$, and so on, adding $30$ every time.
It's easy to check that $6$ is a solution. And I strongly suspect it's the only one, as I checked with a computer all possibilities up to 100 million.
However, I'm not able to prove that it's the only solution.
And I suspect that being a homework problem it would have a handful of solutions that are not too big.
– Cristian Lupascu Nov 06 '22 at 13:14Which is indeed similar.
– Cristian Lupascu Nov 06 '22 at 16:08