How can I prove that these three sets have no common values:
- A: {prime numbers}
- B: {Fibonacci numbers}
- C: {8|n+1}
- C: for example 15: 15+1 = 16 => 8|16 <= 16/8 = 2
- C: for example 23: 23+1 = 24 => 8|24 <= 24/8 = 3
How can I prove that these three sets have no common values:
- C: for example 15: 15+1 = 16 => 8|16 <= 16/8 = 2
- C: for example 23: 23+1 = 24 => 8|24 <= 24/8 = 3
The claim is that Fibonacci primes $F_n$ (which implies that $n$ is prime, except for $n=4$) do not satisfy $F_p\equiv 7\bmod 8$. Let $a(n)$ denote the sequence of Fibonacci primes. Then they satisfy $a(n)\equiv 1,5\bmod 8$, see OEIS, because of $a(n) \equiv 1 \bmod 4$ (Cadwell) for $n>2$.
Consider the Fibonacci numbers mod $8$:
$$1,1,2,3,5,0,5,5,2,7,1,0,\ldots$$
We see that $F_m\equiv7$ mod $8$ if and only if $m\equiv10$ mod $12$, which implies $m$ is even (and greater than $4$). But $F_n\mid F_{2n}$ for all $n$, so $F_m$ cannot be a prime if $8\mid F_m+1$.
Remark: The theorem $F_n\mid F_{2n}$ for all $n$ (and, more generally, $F_n\mid F_{kn}$ for all $k$ and $n$) boils down to the banal observation that $F_n\equiv0$ mod $F_n$. This means that the sequence of Fibonacci numbers mod $F_n$ begins
$$1,1,2,3,\ldots,F_{n-1},0,F_{n-1},F_{n-1},2F_{n-1},3F_{n-1},\ldots,F_{n-1}^2,0,\ldots$$
That is, once you hit the first $0$, the sequence repeats itself, multiplied by (powers of) $F_{n-1}$.