A153145 Primes p such that 2*p + 19 is also prime.
2, 5, 11, 17, 41, 47, 59, 89, 107, 131, 137, 149, 167, 191, 251, 269, 311, 317, 389, 401, 419, 431, 461, 467, 479, 521, 587, 599, 641, 677, 797, 809, 839, 857, 929, 941, 947, 977, 1031, 1061, 1097, 1109, 1181, 1187, 1229, 1301, 1307, 1319, 1361, 1367, 1409
Offset: 1
Examples
For n=2, 2*n+19 = 23 is prime, so 2 is in the sequence.
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..1000
Crossrefs
Programs
-
Magma
[p: p in PrimesUpTo(1500) | IsPrime(2*p+19)];
-
Mathematica
Select[Prime[Range[2000]],PrimeQ[2 # + 19] &] (* Vincenzo Librandi, Oct 20 2012 *)
Extensions
Edited, corrected and extended by Klaus Brockhaus, Dec 22 2008