A155937 Numbers n such that 13*n + 8 is a prime.
3, 5, 11, 17, 21, 23, 27, 35, 41, 45, 47, 63, 65, 75, 77, 81, 83, 93, 101, 105, 107, 111, 123, 137, 143, 153, 165, 167, 177, 195, 201, 203, 207, 213, 215, 231, 233, 237, 243, 251, 255, 273, 275, 287, 303, 311, 317, 327, 333, 335, 341, 345, 347, 353, 357, 371
Offset: 1
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..1000
Programs
-
Magma
[n: n in [0..400] | IsPrime(13*n + 8)]; // Vincenzo Librandi, Oct 16 2012
-
Mathematica
Select[Range[600], PrimeQ[13 # + 8] &] (* Vincenzo Librandi, Oct 16 2012 *)