A366250 Numbers k that are not powerful and do not have a strictly superior squarefree divisor.
48, 54, 96, 160, 162, 192, 224, 250, 320, 375, 384, 405, 448, 486, 567, 640, 686, 704, 768, 832, 896, 960, 1029, 1080, 1200, 1215, 1250, 1280, 1350, 1408, 1440, 1458, 1500, 1536, 1620, 1664, 1701, 1715, 1792, 1875, 1920, 2016, 2058, 2160, 2176, 2250, 2268, 2352
Offset: 1
Keywords
Examples
Let b(n) = A364702(n). a(1) = b(1) = 48 since rad(48) < 48/rad(48), 6 < 8. b(2) = 50 is not in the sequence since rad(50) > 50/rad(50), 10 > 5. a(2) = b(3) = 54 since 6 < 9, etc.
Links
- Michael De Vlieger, Table of n, a(n) for n = 1..10000
Crossrefs
Programs
-
Mathematica
Select[Range[2, 2400], And[! AllTrue[#2[[All, -1]], # > 1 &], #1 >= Apply[Times, #2[[All, 1]]^2]] & @@ {#, FactorInteger[#]} &]
-
PARI
isok(m) = if (!ispowerful(m), my(d=divisors(m)); #select(x->(issquarefree(x) && (x^2>m)), d) == 0); \\ Michel Marcus, Feb 11 2024
Comments