A032714 Numbers k such that k prefixed by '6' and followed by '3' is prime.
1, 4, 5, 7, 8, 11, 13, 14, 16, 17, 20, 26, 32, 34, 35, 37, 47, 55, 56, 65, 67, 70, 73, 76, 79, 80, 82, 83, 86, 88, 98, 104, 115, 122, 125, 128, 133, 134, 136, 140, 146, 148, 149, 154, 155, 158, 160, 161, 164, 167, 170, 172, 181, 184, 193, 200, 205, 214, 221
Offset: 1
Links
- Harvey P. Dale, Table of n, a(n) for n = 1..1000
Programs
-
Mathematica
Select[Range[300],PrimeQ[FromDigits[Join[{6},IntegerDigits[#],{3}]]]&] (* Harvey P. Dale, Mar 09 2013 *)
Extensions
Offset changed by Andrew Howroyd, Aug 13 2024
Comments