A342109 Largest positive integer m with n digits and such that omega(m) = bigomega(m) = n.
7, 95, 994, 9982, 99858, 999570, 9998142, 99953490, 999068070, 9592993410
Offset: 1
Examples
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).
Programs
-
Mathematica
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 *)
Comments