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

A138626
Nonnegative integers n such that 17*n-5 is prime.
1
2, 6, 8, 12, 14, 36, 38, 42, 44, 48, 56, 62, 66, 68, 78, 84, 92, 96, 108, 114, 122, 126, 132, 134, 138, 146, 152, 156, 162, 168, 174, 182, 188, 192, 198, 204, 218, 222, 224, 236, 246, 248, 264, 266, 278, 282, 294, 306, 308, 314, 324, 332, 338, 344, 356, 366
OFFSET
1,1
LINKS
EXAMPLE
17*2-5=29, 17*6-5=97, 17*8-5=131, 17*12-5=199,...
MATHEMATICA
a={}; Do[x=17*n-5; If[PrimeQ[x], AppendTo[a, n]], {n, 10^2}]; a
Select[Range[500], PrimeQ[17#-5]&] (* Harvey P. Dale, Nov 28 2016 *)
CROSSREFS
Sequence in context: A120227 A276154 A328770 * A178406 A189515 A190344
KEYWORD
nonn
AUTHOR
EXTENSIONS
More terms from Harvey P. Dale, Nov 28 2016
STATUS
approved