A070842
Smallest n-digit number with exactly n prime divisors. There are no further terms.
Original entry on oeis.org
2, 10, 102, 1020, 10010, 101010, 1009470, 11741730, 223092870, 6469693230
Offset: 1
a(4) = 1020 with the prime divisors 2, 3, 5, 17.
A342109
Largest positive integer m with n digits and such that omega(m) = bigomega(m) = n.
Original entry on oeis.org
7, 95, 994, 9982, 99858, 999570, 9998142, 99953490, 999068070, 9592993410
Offset: 1
9592993410 = 2 * 3 * 5 * 7 * 11 * 13 * 17 * 19 * 23 * 43 and length(9592993410) = omega(9592993410) = bigomega(9592993410) = 10, so, a(10) = 9592993410 is a term; it is also the largest squarefree number with as many decimal digits as distinct prime factors (A167050).
-
a={}; For[n=1,n<=10,n++,For[m=10^n-1,m>=10^(n-1),m--,If[PrimeOmega[m]==PrimeNu[m]==n,AppendTo[a, m];Break[]]]]; a (* Stefano Spezia, Mar 06 2021 *)
Showing 1-2 of 2 results.
Comments