Are all primes (past 2 and 3) of the forms 6n+1 and 6n-1? (original) (raw)

By Chris Caldwell

Perhaps the most rediscovered result about primes numbers is the following:

I found that every prime number over 3 lies next to a number divisible by six. Using Matlab with the help of a friend, we wrote a program to test this theory and found that at least within the first 1,000,000 primes this holds true.

Checking a million primes is certainly energetic, but it is not necessary (and just looking at examples can be misleading in mathematics). Here is how to prove your observation: take any integer n greater than 3, and divide it by 6. That is, write

n = 6_q_ + r

where q is a non-negative integer and the remainder r is one of 0, 1, 2, 3, 4, or 5.

So if n is prime, then the remainder r is either

Remember that being one more or less than a multiple of six does not make a number prime. We have only shown that all primes other than 2 and 3 (which divide 6) have this form.

Printed from the PrimePages <t5k.org> © Reginald McLean.