n = 3: a = 2; (a^n)+1 = (2^3)+1 = 9 is composite because 9 = 3*3 a = 3; (a^n)+1 = (3^3)+1 = 28 is composite because 28 = 4*7 a = 4; (a^n)+1 = (4^3)+1 = 65 is composite because 65 = 5*13 n = 5: a = 2; (a^n)+1 = (2^5)+1 = 33 is composite because 33 = 3*11 a = 3; (a^n)+1 = (3^5)+1 = 244 is composite because 244 = 4*61 a = 4; (a^n)+1 = (4^5)+1 = 1025 is composite because 1025 = 5*205 n = 7: a = 2; (a^n)+1 = (2^7)+1 = 129 is composite because 129 = 3*43 a = 3; (a^n)+1 = (3^7)+1 = 2188 is composite because 2188 = 4*547 a = 4; (a^n)+1 = (4^7)+1 = 16385 is composite because 16385 = 5*3277
n = 2: a = 2; (a^n)+1 = (2^2)+1 = 5 is prime (the only factors are 1 and 5) a = 3; (a^n)+1 = (3^2)+1 = 10 is composite since 2*5 = 10 a = 4; (a^n)+1 = (4^2)+1 = 17 is prime (the only factors are 1 and 17) n = 4: a = 2; (a^n)+1 = (2^4)+1 = 17 is prime (the only factors are 1 and 17) a = 3; (a^n)+1 = (3^4)+1 = 82 is composite since 82 = 2*41 a = 4; (a^n)+1 = (4^4)+1 = 257 is prime (the only factors are 1 and 257; see "primality check" below) n = 6: a = 2; (a^n)+1 = (2^6)+1 = 65 = 5*13 is composite a = 3; (a^n)+1 = (3^6)+1 = 730 = 10*73 is composite a = 4; (a^n)+1 = (4^6)+1 = 4097 = 17*241 is composite
Primality Check: To determine if 257 is prime or not, divide it over each item in the list of primes smaller than sqrt(257) = 16.0312You'll divide 257 over the following primes: 2,3,5,7,11, and 13You should find that the result of each division is a non-integer decimal value. This proves none of those values are a factor of 257 and proves 257 is prime. |
If n is an odd positive integer number greater than 1, then there is a decomposition= (the signs at degrees of "a" alternate " + " and " - "). It is a well known formula. To prove it, it is enough to open parentheses. This formula shows and tells that every integer number of the form with integer positive " a " and natural odd n > 1 is a composite number. It is what you want to prove.