21728 is in the sequence as 21728/(2*1*7*2*8) = 97 which is prime. - David A. Corneth, Mar 30 2021
MATHEMATICA
okQ[n_] := Block[{p = Times @@ IntegerDigits[n]}, n == p || PrimeQ[n/p]]; Select[ Range[36000], okQ]
Select[Range[40000], FreeQ[IntegerDigits[#], 0]&&!CompositeQ[#/Times@@IntegerDigits[#]]&] (* Harvey P. Dale, Mar 30 2024 *)
PROG
(Magma) IsA001103:=func< n | p ne 0 and n mod p eq 0 and (q eq 1 or IsPrime(q)) where q is (p eq 0 select 0 else n div p) where p is &*Intseq(n) >; [ n: n in [1..40000] | IsA001103(n) ]; // Klaus Brockhaus, Jan 24 2011
(Haskell)
a001103 n = a001103_list !! (n-1)
a001103_list = filter f a052382_list where
f x = m == 0 && (x' == 1 || a010051 x' == 1) where