@Yomi,
Thanks for responding to my post in such an articulate manner to clarify the relationship between some of these ideas. And your first post to boot!
Okay, so I knew most of that (in a somewhat disjoint fashion) mostly from poking around haphazardly. I do have a reason for my misconception, and it is from a series of back of the envelope calculations after I heard a brief explanation of AKS by Andrew Grimes. I get that the general genius of AKS is that it shows determining primality is in the polynomial time, but the finer points of the paper are above my head currently. Maybe you could give me some feedback on the following.
(1) Starting with the congruence you gave that was discovered in the 17th century:
## prime(a, x) := (x-a)^n \buildrel (n) \over\equiv (x^n - a) \forall a,x \in \mathbb{Z} n \in \mathbb{P} ##
(2) And in the special case:
## prime(-1, x) := (x+1)^n \buildrel (n) \over\equiv (x^n+1) ##
(3) Which implies by the definition of congruence:
## (x+1)^n = nP(x)+ (x^n+1) ##
(4) Subtractive property of equations:
## nP(x) = (x+1)^n - (x^n+1) ##
(5) And given the expansion of the binomial:
## nP(x) = (c_1x^n + c_2x^{n-1} + ... + c_{n-1}x + c_n) + (-x^n-1) : c_n := C(n,0), c_1 := C(n,n), c_n = c_1 = 1##
(6) Combining additive inverses with first and last terms:
## nP(x) = c_2x^{n-1} + ... + c_{n-1}x\ \forall n > 2##
(7) Implicating the polynomial as a multiple of ## n ## such that:
## n | (c_2x^{n-1} + ... + c_{n-1}x) ##
(8) In sigma as:
## n | \sum\limits_{b=2}^{n-1} c_b: c_1 + \sum\limits_{b=2}^{n-1} c_b + c_n = 2^n ##
(9) Where the remaining coefficients are given their cardinality:
## n | 2^n - 2 \rightarrow n|2(2^{n-1} - 1)##
(10) And so by virtue of restriction on ## n > 2##:
## n | 2^{n-1} - 1\ \forall n \in \mathbb{P} ##
##\blacksquare##
I get your refutation that the special case of FLiT is bound to have binary pseudoprimes (starting at n=341), but what I don't get is how in the above derivation, I'm supposed to be able to see that pseudoprimes necessarily exist. Any hints would be greatly appreciated so I can go on instead of staring at this.