Can any sum of three consecutive positive numbers be a prime number?
This is part of my simple problems set .
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
n + ( n + 1 ) + ( n + 2 ) = 3 n + 3 = 3 ( n + 1 )
As the result is a multiple by 3, it cannot be a prime number.