OFFSET
1,1
EXAMPLE
111317 is a term as it is a concatenation of 11, 13 and 17. 199211 is a term as a concatenation of 199 and 211.
MATHEMATICA
Module[{pr=Prime[Range[500]], c2, c3, c4}, c2=Select[FromDigits/@ (Flatten[ IntegerDigits[ #], 1]&/@Partition[pr, 2, 1]), PrimeQ]; c3=Select[ FromDigits/@ (Flatten[IntegerDigits[#], 1]&/@Partition[pr, 3, 1]), PrimeQ]; c4= Select[ FromDigits/@(Flatten[IntegerDigits[#], 1]&/@Partition[ pr, 4, 1]), PrimeQ]; Take[Union[Join[c2, c3, c4]], 50]] (* Harvey P. Dale, Apr 20 2017 *)
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Amarnath Murthy, Feb 28 2002
EXTENSIONS
Edited by Larry Reeves (larryr(AT)acm.org), Oct 09 2003
STATUS
approved