I currently run an integer factoring project of the numbers of the form $$5^n+6^n+7^n+8^n+9^n+10^n$$ where $n$ is a non-negative integer.
Do the prime factors have a particular form as it is the case for the Mersenne-numbers with prime exponent or the Fermat-numbers ? Is there a reason why the largest prime upto $n=70\ 000$ occurs for $n=176$ ?
For the second question , we only have to consider the case $4\mid n$ because otherwise $3$ or $5$ is a prime factor. Nevertheless , it is somewhat surprising that the prime after $n=176$ occurs so late , if there is a further such prime.
I thought about using the Faulhaber-formula , but this becomes too complicated for large exponents.
I am pretty sure that the factorizations of those numbers can be accelerated because of the large occuring exponents. An overview of the first not fully factor cases is here. How can I modify the available siqs-programs to make use of this ?
Comment: Some modifications:
$176=11\times 16$
$A=5^n+6^n+7^n+8^n+9^n+10^n$
For $p=17$ we have:
$a^{16}\equiv 1\bmod 17\Rightarrow (a^{16})^{11}\equiv 1 \bmod 17; a= 5, 6, 7, 8, 9, 10$
$\Rightarrow$ for $n=176$:
$ A\equiv 6\bmod 17$
$b^{11}\equiv b\bmod 11; b=5^{16}, 6^{16}, 7^{16}, 8^{16}, 9^{16}, 10^{16}$
$\Rightarrow$ for $n=176$:
$ A\equiv (6\bmod 17)\bmod 11 $
In this way the linear form of $A$ for $n=176 $ can be:
$A=17 k + 11m +6$
this is the form of a prime generator by $A$. To make it simpler, let $k=11s$ and $m=17t$ , so $A$ can be written as:
$A=187 u + 6$
This progression mostly gives composite numbers,for example for u up to $13$ only four numbers $193, 941, 2063$ and $2437$ are primes. probably the density of primes reduces for large values of u. Can this be the reason for the occurring large prime when $n=176$?