How many prime numbers less than are there which can be expressed in the form where and are all natural numbers and .
Details and Assumptions:
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.
Let us solve this by making some cases:
Case-1: When n = 2 .
Consider the odd primes first, the only primes that satisfy the given condition are congruent to 1 mod 4 . There are 1 1 of them that are 5 , 1 3 , 1 7 , 2 9 , 3 7 , 4 1 , 5 3 , 6 1 , 7 3 , 8 9 and 9 7 .
Now, we look at our only even prime number 2 which can be expressed as 1 2 + 1 2 = 2 . So, it also satisfies the condition.
Hence, there are 1 2 such primes.
Case-2: When n = 3 .
If n = 3 , our expression becomes a 3 + b 3 which can be factorized further into ( a + b ) ( a 2 − a b + b 2 ) . Only, 1 3 + 1 3 = 2 satisfies the condition but 2 has already been counted in the above case. So, we will not count it again.
Case-3: When n = 4 .
When n reaches 4 , there are very few cases to check as the sum a 4 + b 4 exceeds 1 0 0 except when a and b are 1 , 2 and 3 . Putting the values, we get: 1 4 + 2 4 = 1 7
1 4 + 3 4 = 8 2
2 4 + 3 4 = 9 7
Out of these, 1 7 and 9 7 are the only primes but they have already been counted.
Case-4: When n ≥ 5 .
In this case, the permissible values of a and b are only 1 and 2 . Putting the values, we always get a composite number except 2 which has already been counted.
So, we can observe that there are no different primes in any case.
Hence, our final answer is 1 2 .