A120823 a(n) consecutive digits ascending beginning with the digit 5 give a prime..
1, 29, 269, 689
Offset: 1
Examples
29 is a term since the 29-digit number 56789012345678901234567890123 is a prime.
Programs
-
Mathematica
fQ[n_] := PrimeQ@ FromDigits@ Mod[4+Range@n, 10]; lst = {}; Do[ If[fQ@n, AppendTo[lst, n]; Print@n], {n, 9000}]; lst
Comments