A377590 Numbers k neither squarefree nor prime powers such that there exist no numbers m such that rad(m) | k and Omega(m) > Omega(k), where rad = A007947 and Omega = A001222.
12, 24, 45, 48, 63, 75, 96, 135, 175, 189, 192, 225, 245, 275, 325, 384, 405, 425, 475, 539, 567, 575, 605, 637, 675, 768, 833, 847, 875, 931, 1127, 1183, 1215, 1225, 1375, 1421, 1519, 1536, 1573, 1625, 1701, 1715, 1813, 1859, 1925, 2009, 2023, 2025, 2057, 2107
Offset: 1
Examples
12 is in the sequence since 2^3 < 12, and Omega(2^3) = Omega(12) = 3. 20 is not in the sequence since 2^4 < 20 and Omega(2^4) = 4, but Omega(20) = 3. 45 is in the sequence since 3^3 < 45, and Omega(3^3) = Omega(45) = 3. 375 = 3*5^3 is not in the sequence since 3^5 < 375 and Omega(3^5) = 5, but Omega(345) = 4.
Links
- Michael De Vlieger, Table of n, a(n) for n = 1..10000
- Michael De Vlieger, Numbers k for which floor(log k / log lpf(k)) <= bigomega(k), 2024.
Programs
-
Mathematica
Select[Select[Range[4000], Nor[PrimePowerQ[#], SquareFreeQ[#]] &], Function[{n, k}, NoneTrue[FactorInteger[n][[All, 1]], Floor@ Log[#, n] > k &]] @@ {#, PrimeOmega[#]} &]
Comments