OFFSET
1,1
COMMENTS
There are exactly 4858 five-digit odd semiprimes with all digits distinct. The last few terms of the sequence are: 98501, 98503, 98517, 98521, 98531, 98537, 98567, 98603, 98607, 98617, 98635, 98647, 98653, 98657, 98671, 98701, 98723, 98741, 98743, 98751, 98765.
See the link with the b-file for all 4858 entries.
LINKS
K. D. Bajpai, Table of n, a(n) for n = 1..4858
EXAMPLE
a(1) = 10237 = 29 * 353 is the smallest five-digit odd semiprime with all digits distinct.
a(4858) = 98765 = 5 * 19753 is the largest five-digit odd semiprime with all digits distinct.
MATHEMATICA
c = 0; Do[If[Length[Union[IntegerDigits[n]]] == 5 && PrimeOmega[n] == 2, c++; Print[c, " ", n]], {n, 10001, 99999, 2}]
CROSSREFS
KEYWORD
nonn,base,fini,full
AUTHOR
K. D. Bajpai, Sep 27 2014
STATUS
approved