A176116 Primes p such that p^4+1 = 2q where q is prime.
3, 5, 7, 11, 13, 17, 23, 29, 61, 71, 73, 103, 113, 199, 251, 313, 317, 337, 353, 419, 431, 449, 463, 479, 487, 503, 523, 607, 613, 643, 677, 701, 719, 761, 769, 811, 821, 829, 857, 883, 919, 997, 1013, 1019, 1049, 1087, 1123, 1163, 1259, 1327, 1381, 1483, 1493
Offset: 1
Examples
3^4+1 = 2*41; 5^4+1 = 2*313; 7^4+1 = 2*1201; 11^4+1 = 2*7321.
Links
- Jon E. Schoenfield, Table of n, a(n) for n = 1..10000
Programs
-
Mathematica
Select[Prime[Range[250]],PrimeQ[(#^4+1)/2]&] (* Harvey P. Dale, Jul 20 2012 *)
-
PARI
lista(nn) = forprime(p=3, nn, if (isprime((p^4+1)/2), print1(p, ", "));); \\ Michel Marcus, Oct 03 2016
Extensions
Edited by Ray Chandler, Apr 10 2010