OFFSET
1,1
EXAMPLE
157 is in the sequence because (1) it is a Chen prime and (2) the multiplicative digital root 5 is also a Chen prime.
MATHEMATICA
mdr[n_] := NestWhile[Times @@ IntegerDigits@# &, n, # > 9 &]; chenQ[n_] := PrimeQ[n] && Plus @@ Last /@ FactorInteger[n + 2] < 3; Select[ Prime@ Range@500, chenQ@ mdr@# && chenQ@# &] (* Robert G. Wilson v *)
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Luc Stevens (lms022(AT)yahoo.com), May 21 2006
EXTENSIONS
More terms from Robert G. Wilson v, May 22 2006
STATUS
approved