1

"Find the smallest possible integer n with the property that there exists a prime $p$ such that the $6$ numbers: $p, p+n, p+2n, p+3n, p+4n, p+5n$ are all prime numbers."

Okay, so I have tried what I thought to be every combination of numbers and cannot figure out what works for the last number $p+5n$; I understand that $n$ must be even since if $n$ is odd then there will always be at least $2$ even numbers. which would be a contradiction of all numbers being prime. Any hints would be greatly appreciated on solving this without brute force.

J. W. Tanner
  • 60,406

1 Answers1

2

Hint:

If $n$ is not a multiple of $2$, then $p+n$ or $p+2n$ is.

If $n$ is not a multiple of $3$, then $p+n$ or $p+2n$ or $p+3n$ is.

If $n$ is not a multiple of $5$, then $p+n$ or $p+2n$ or $p+3n$ or $p+4n$ or $p+5n$ is.

With that information, try $p=7$.

J. W. Tanner
  • 60,406