A107306 Numbers k such that (17*k - 19) is prime.
6, 10, 24, 28, 30, 36, 40, 48, 58, 64, 66, 70, 78, 84, 90, 94, 96, 106, 118, 124, 136, 150, 156, 166, 168, 174, 180, 184, 196, 198, 204, 208, 226, 238, 244, 250, 274, 276, 288, 300, 318, 328, 330, 334, 336, 348, 358, 360, 366, 370, 376, 388, 394, 400, 406, 408
Offset: 1
Examples
If k=64 then 17*k - 19 = 1069 (prime).
Links
- Harvey P. Dale, Table of n, a(n) for n = 1..1000
Crossrefs
Cf. A140543 (the resulting primes).
Programs
-
Magma
[n: n in [2..100000] | IsPrime(17*n - 19)]; // Vincenzo Librandi, Nov 13 2010
-
Mathematica
Select[Range[2,500],PrimeQ[17#-19]&] (* Harvey P. Dale, Jan 15 2015 *)
-
PARI
is(n)=isprime((17*n-19)) \\ Charles R Greathouse IV, Jun 12 2017
Comments