OFFSET
1,1
COMMENTS
Equivalently, the products of 4 prime numbers that have distinct lengths when written in decimal. - Peter Munn, May 30 2023
EXAMPLE
2241998 because 2241998 = 2 * 11 * 101 * 1009, which have 1, 2, 3, and 4 digits, respectively.
MATHEMATICA
Select[Range[24*10^5], PrimeNu[#]==4&&Length[Union[IntegerLength/@ FactorInteger[ #][[All, 1]]]]==4&] (* Harvey P. Dale, Jan 12 2020 *)
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Patrick De Geest, Jul 15 1998
STATUS
approved