A330678 First of two consecutive prime numbers both of which end with the digits 0,1.
13200001, 14272201, 18494401, 20583601, 21699901, 27615001, 34697701, 37661101, 44561401, 52399801, 60096901, 61571701, 64683301, 67659301, 74313301, 76605301, 80451001, 85268401, 92287801, 92898301, 95076901, 96184801, 101931601, 112800001, 114759901
Offset: 1
Examples
20583601 is a prime and the next prime is 20583701, both which end in 0,1.
Crossrefs
Cf. A050434.
Programs
-
Mathematica
Select[Partition[Prime[Range[10000000]],2,1],Mod[#[[1]],100]==Mod[+#[[2]], 100]==1&][[All,1]]