A375076 Numbers whose prime factorization exponents include at least one 1, at least one 3 and no other exponents.
24, 40, 54, 56, 88, 104, 120, 135, 136, 152, 168, 184, 189, 232, 248, 250, 264, 270, 280, 296, 297, 312, 328, 344, 351, 375, 376, 378, 408, 424, 440, 456, 459, 472, 488, 513, 520, 536, 552, 568, 584, 594, 616, 621, 632, 664, 680, 686, 696, 702, 712, 728, 744, 750
Offset: 1
Links
Crossrefs
Programs
-
Mathematica
Select[Range[750], Union[FactorInteger[#][[;; , 2]]] == {1, 3} &]
-
PARI
is(k) = Set(factor(k)[,2]) == [1, 3];
Comments