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”).

A216847
Integers n such that 6n -/+ 1 and 30n -/+ 1 are all primes.
1
1, 2, 5, 77, 100, 110, 135, 170, 215, 338, 357, 385, 390, 467, 555, 593, 597, 688, 737, 758, 980, 1127, 1682, 1743, 1785, 2305, 2555, 3152, 3372, 3640, 3927, 3985, 4375, 4480, 4597, 4615, 4653, 4685, 5082, 5252, 5357, 5558, 6018, 6078, 6088, 6155, 7012, 7380
OFFSET
1,2
COMMENTS
Consider two primes P=2p+3q, Q=2q+3p with p and q twin primes, and p=6n-1, then P=Q+2, and sequence gives corresponding values of n.
LINKS
MATHEMATICA
Select[Range[10000], PrimeQ[6 # - 1] && PrimeQ[6 # + 1] && PrimeQ[30 # - 1] && PrimeQ[30 # + 1] &] (* T. D. Noe, Dec 10 2012 *)
Select[Range[8000], AllTrue[Flatten[{6#+{1, -1}, 30#+{1, -1}}], PrimeQ]&] (* The program uses the AllTrue function from Mathematica version 10 *) (* Harvey P. Dale, Aug 23 2014 *)
PROG
(PARI){for(n=1, 6000, if(isprime(p=6*n-1)&&isprime(p+2)&&isprime(q=30*n-1)&&isprime(q+2), print1(n", ")))}
CROSSREFS
Intersection of A002822 and A176114.
Sequence in context: A183291 A372482 A254405 * A102983 A038583 A082080
KEYWORD
nonn
AUTHOR
Zak Seidov, Dec 10 2012
STATUS
approved