A032715 Numbers k such that k prefixed by '7' and followed by '3' is prime.
3, 4, 7, 10, 19, 21, 24, 25, 28, 33, 39, 43, 52, 57, 58, 60, 64, 67, 70, 72, 75, 79, 82, 85, 87, 88, 93, 96, 99, 102, 114, 115, 123, 126, 129, 133, 135, 136, 141, 144, 145, 147, 148, 150, 156, 159, 163, 166, 169, 171, 184, 193, 196, 198, 199, 204, 205, 207
Offset: 1
Links
- Harvey P. Dale, Table of n, a(n) for n = 1..1000
Programs
-
Mathematica
Select[Range[300],PrimeQ[FromDigits[Join[{7},IntegerDigits[#],{3}]]]&] (* Harvey P. Dale, Mar 31 2024 *)
Extensions
Offset changed by Andrew Howroyd, Aug 13 2024