A342108 Smallest positive integer m with n digits and such that omega(m) = bigomega(m) = n.
2, 10, 102, 1110, 10010, 101010, 1009470, 11741730, 223092870, 6469693230
Offset: 1
Examples
10010 = 2*5*7*11*13 is the smallest 5-digit number such that omega(10010) = bigomega(10010) = 5, hence a(5) = 10010.
Programs
-
Mathematica
a={};For[n=1,n<=10,n++,For[m=10^(n-1),m<10^n,m++,If[PrimeOmega[m]==PrimeNu[m]==n,AppendTo[a,m];Break[]]]];a (* Stefano Spezia, Mar 04 2021 *)
Comments