OFFSET
1,1
EXAMPLE
435 is in the sequence because the prime divisors of 435 are {3, 5, 29} and
3 + 5*10 + 29*100 = 2953 is prime.
MAPLE
with(numtheory):T:=array(1..10) : for n from 1 to 1000 do:x:=factorset(n):
k:=nops(x):s:=0:for i from 1 to k do:s:=s+x[i]*10^(i-1) :od:if type(s, prime)=true
and k > 1 then printf(`%d, `, n):else fi:od:
MATHEMATICA
cnpQ[n_]:=Module[{pd=FactorInteger[n][[All, 1]]}, Length[pd]>1&&PrimeQ[ Total[ pd*10^Range[0, Length[pd]-1]]]]; Select[Range[500], cnpQ] (* Harvey P. Dale, Sep 02 2022 *)
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Michel Lagneau, Jan 13 2011
STATUS
approved