OFFSET
0,1
COMMENTS
All integers of the form 4^n + n^4 are composite for n > 1. If n is even, the smallest prime factor is 2. If n is odd and not a multiple of 5, the smallest prime factor is 5. The integers of the form 4^n + n^4 are never divisible by 3, 7, or 11.
a(n) divides at least one of (10*n+5)^2-(10*n+5)*2^(5*n+3)+2^(10*n+5) and (10*n+5)^2+(10*n+5)*2^(5*n+3)+2^(10*n+5).
LINKS
Andrew Eberlein, Table of n, a(n) for n = 0..659
Andrew Eberlein, 999 of the first 1001 values of a(n)
Michael Penn, a prime problem
EXAMPLE
For n=2, 25^4 + 4^25 = 1125899907233249 = 29*373*3121*33350257, so a(2) = 29.
MATHEMATICA
FactorInteger[(10*#+5)^4+4^(10*#+5)][[1, 1]]&/@Range[0, 10]
CROSSREFS
KEYWORD
nonn
AUTHOR
Andrew Eberlein, Sep 24 2025
STATUS
approved
