OFFSET
1,1
LINKS
Robert Israel, Table of n, a(n) for n = 1..10000
F. Smarandache, Sequences of Numbers Involved in Unsolved Problems.
Eric Weisstein's World of Mathematics, Smarandache Sequences
EXAMPLE
a(1) = 4, since 45678910111213 is prime.
MAPLE
filter:= proc(n) isprime(parse(cat($n .. n+9))) end proc:
select(filter, 2*[$1..10^4]); # Robert Israel, Jan 08 2024
MATHEMATICA
Position[Map[FromDigits@ Flatten@ IntegerDigits@ # &, Partition[Range@ 2800, 10, 1]], p_ /; PrimeQ@ p][[All, 1]] (* Michael De Vlieger, May 22 2017 *)
CROSSREFS
KEYWORD
base,easy,nonn
AUTHOR
XU Pingya, May 22 2017
STATUS
approved