A160023 Primes p such that p^4 + 7^4 + 3^4 is prime.
11, 37, 71, 101, 149, 163, 191, 271, 293, 379, 409, 419, 647, 661, 709, 1153, 1193, 1231, 1277, 1523, 1583, 1619, 1667, 1693, 1753, 1777, 1787, 1913, 2089, 2099, 2161, 2213, 2441, 2473, 2531, 2551, 2609, 2711, 2749, 2909, 2953, 2999, 3221, 3257, 3469
Offset: 1
Examples
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.
Links
- Harvey P. Dale, Table of n, a(n) for n = 1..1000
Programs
-
Magma
[ p: p in PrimesUpTo(3500) | IsPrime(p^4+2482) ]; // Klaus Brockhaus, May 03 2009
-
Mathematica
Select[Prime[Range[500]],PrimeQ[#^4+2482]&] (* Harvey P. Dale, Jan 31 2017 *)
Extensions
Edited and extended beyond 2441 by Klaus Brockhaus, May 03 2009
Comments