OFFSET
1,1
LINKS
K. D. Bajpai, Table of n, a(n) for n = 1..8612
EXAMPLE
4609 = 11 * 419 is semiprime and has only holey digits 4, 6, 0 and 9. Hence it is in the sequence.
4849 = 13 * 373 is semiprime and has only holey digits 4, 8, 4 and 9. Hence it is in the sequence.
MATHEMATICA
c = 0; Do[a = PrimeOmega[n]; If[a==2&& Intersection[IntegerDigits[n], {1, 2, 3, 5, 7}]=={}, c++; Print[c, " ", n]], {n, 2*10^7}]
Select[FromDigits/@Tuples[{0, 4, 6, 8, 9}, 4], PrimeOmega[#]==2&] (* Harvey P. Dale, Sep 08 2017 *)
CROSSREFS
KEYWORD
nonn,base
AUTHOR
K. D. Bajpai, May 21 2014
STATUS
approved