login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A188132
Primes p such that p == 3 (mod 4) and 6p+1 is prime.
1
3, 7, 11, 23, 47, 83, 103, 107, 131, 151, 263, 271, 283, 311, 331, 347, 367, 443, 467, 503, 607, 683, 727, 751, 787, 863, 887, 907, 947, 971, 1063, 1091, 1103, 1151, 1171, 1283, 1327, 1423, 1427, 1451, 1487, 1511, 1531, 1567, 1607, 1787, 1811, 1823, 1831, 1847, 1907, 1931, 1987
OFFSET
1,1
COMMENTS
Complement of A188131 in A007693 \ {2}.
LINKS
MATHEMATICA
Select[Range[3, 2000, 4], PrimeQ[#] && PrimeQ[6# + 1] &] (* Amiram Eldar, Nov 13 2019 *)
PROG
(PARI) forprime( p=1, 1e4, p%4==3 & isprime(p*6+1) & print1(p", "))
CROSSREFS
KEYWORD
nonn
AUTHOR
M. F. Hasler, Mar 21 2011
STATUS
approved