A286706 Primes in A077309.
23, 4567, 78910111213, 25262728293031323334353637383940414243444546474849
Offset: 1
Examples
The prime 4567 is a term since it is the concatenation of 4 decimal numbers beginning with the number 4. - _Michael De Vlieger_, May 13 2017
Links
- Eric Weisstein's World of Mathematics, Consecutive Number Sequences
Programs
-
Mathematica
Select[Table[FromDigits@ Flatten@ Take[#, {n, n + (n - 1)}], {n, Ceiling[Length[#]/2]}], PrimeQ] &@ Array[IntegerDigits, 10^3] (* Michael De Vlieger, May 13 2017 *)
Comments