OFFSET
1,1
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 1..1000
EXAMPLE
347 is in the sequence because 347 becomes 5717 which is also prime, where 5717 is the concatenation (prime(3),prime(4),prime(7))= (5,7,17).
MATHEMATICA
lst={}; f[n_]:=Block[{a=IntegerDigits[n], b="", k=1, l}, l=Length[a]; While[k<l+1, b=StringJoin[b, ToString[Prime[a[[k]]]]]; k++]; ToExpression[b]]; Do[If[PrimeQ[f[Prime[n]]], AppendTo[lst, Prime[n]]], {n, 1, 600}]; lst
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Michel Lagneau, Apr 21 2014
STATUS
approved