A155942 Numbers n such that 16n+1 is a prime.
1, 6, 7, 12, 15, 16, 21, 22, 25, 27, 28, 36, 37, 40, 42, 48, 55, 58, 61, 63, 72, 75, 76, 78, 81, 85, 88, 93, 97, 100, 106, 111, 117, 118, 126, 130, 132, 133, 135, 142, 151, 162, 163, 166, 168, 172, 175, 177, 181, 190, 193, 195, 196, 198, 201, 207, 208, 210, 216, 226
Offset: 1
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..1000
Programs
-
Magma
[n: n in [0..400] | IsPrime(16*n + 1)]; // Vincenzo Librandi, Feb 16 2013
-
Mathematica
Select[Range[400], PrimeQ[16 # + 1] &] (* Vincenzo Librandi, Feb 16 2013 *)