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

A172147
Numbers n such that 42n - 5 and 42n + 5 are prime.
3
1, 2, 4, 9, 11, 12, 17, 18, 21, 22, 26, 28, 29, 31, 34, 37, 43, 49, 56, 57, 64, 66, 68, 79, 86, 88, 104, 106, 114, 117, 119, 121, 133, 138, 144, 148, 152, 166, 171, 172, 182, 183, 192, 193, 199, 204, 207, 208, 213, 218, 224, 229, 232, 233, 242, 244, 249, 257, 264, 268, 276
OFFSET
1,2
LINKS
EXAMPLE
a(1)=1 because 42*1 - 5 = 37 and 42*1 + 5 = 47 are both prime.
MATHEMATICA
Select[Range[280], PrimeQ[42 # - 5] && PrimeQ[42 # + 5] &] (* Ivan Neretin, Jan 24 2017 *)
CROSSREFS
Sequence in context: A096692 A203847 A365811 * A266726 A030194 A190494
KEYWORD
nonn,easy
AUTHOR
EXTENSIONS
Corrected by Charles R Greathouse IV, Mar 19 2010
STATUS
approved