%I #4 Nov 21 2013 12:48:58
%S 2,3,5,7,13,17,31,71,113,131,211,311,1117,1151,1511,2111,11117,11171,
%T 131111,311111,511111,1111151,1111211,1111711,1117111,11111117,
%U 11111171,71111111
%N Chen primes for which the product of the digits is also a Chen prime.
%e 31 is in the sequence because (1) it is a Chen prime and (2) the product of its digits 3*1=3 is also a Chen prime.
%t chenQ[n_]:=Module[{pidn=Times@@IntegerDigits[n]},PrimeQ[pidn]&&PrimeOmega[ pidn+2]<3]; With[{chen=Select[Prime[Range[4200000]],PrimeOmega[#+2]<3&]},Select[chen,chenQ]] (* _Harvey P. Dale_, Apr 22 2012 *)
%Y Cf. A109611.
%K base,nonn
%O 1,1
%A Luc Stevens (lms022(AT)yahoo.com), May 21 2006