OFFSET
1,1
COMMENTS
There are exactly 863 four-digit odd semiprimes with all distinct digits. The last few terms of the sequence are: 9563, 9571, 9573, 9607, 9617, 9627, 9637, 9641, 9647, 9651, 9671, 9673, 9683, 9687, 9701, 9703, 9713, 9731, 9745, 9753, 9761, 9763, 9813, 9827, 9841, 9847, 9853, 9863, 9865.
See the link with the b-file for all 863 entries.
LINKS
K. D. Bajpai, Table of n, a(n) for n = 1..863
EXAMPLE
a(1) = 1027 = 13 * 79 is the smallest four-digit odd semiprime with all digits distinct.
a(863) = 9865 = 5 * 1973 is the largest four-digit odd semiprime with all digits distinct.
MATHEMATICA
c = 0; Do[If[Length[Union[IntegerDigits[n]]] == 4 && PrimeOmega[n] == 2, c++; Print[c, " ", n]], {n, 1001, 9999, 2}]
CROSSREFS
KEYWORD
nonn,base,fini,full
AUTHOR
K. D. Bajpai, Sep 27 2014
STATUS
approved