OFFSET
1,1
COMMENTS
For primes p, q, r the sum p^4 + q^4 + r^4 can be prime only if at least one of p, q, r equals 3. This sequence is the special case q = 7, r = 3.
It is conjectured that the sequence is infinite.
There are prime twins (6197, 6199) and other consecutive primes (409, 419; 2089, 2099) in the sequence.
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..1000
EXAMPLE
p = 7: 7^4 + 7^4 + 3^4 = 4883 = 19*257, so 7 is not in the sequence.
p = 11: 11^4 + 7^4 + 3^4 = 17123 is prime, so 11 is in the sequence.
p = 101: 101^4 + 7^4 + 3^4 = 104062883 is prime, so 101 is in the sequence.
MATHEMATICA
Select[Prime[Range[500]], PrimeQ[#^4+2482]&] (* Harvey P. Dale, Jan 31 2017 *)
PROG
(Magma) [ p: p in PrimesUpTo(3500) | IsPrime(p^4+2482) ]; // Klaus Brockhaus, May 03 2009
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Ulrich Krug (leuchtfeuer37(AT)gmx.de), Apr 30 2009
EXTENSIONS
Edited and extended beyond 2441 by Klaus Brockhaus, May 03 2009
STATUS
approved