A375145 Numbers whose prime factorization has exactly one exponent that is larger than 2.
8, 16, 24, 27, 32, 40, 48, 54, 56, 64, 72, 80, 81, 88, 96, 104, 108, 112, 120, 125, 128, 135, 136, 144, 152, 160, 162, 168, 176, 184, 189, 192, 200, 208, 224, 232, 240, 243, 248, 250, 256, 264, 270, 272, 280, 288, 296, 297, 304, 312, 320, 324, 328, 336, 343, 344
Offset: 1
Examples
8 = 2^3 is a term since its prime factorization has exactly one exponent, 3, that is larger than 2.
Links
Crossrefs
Programs
-
Mathematica
q[n_] := Count[FactorInteger[n][[;; , 2]], _?(# > 2 &)] == 1; Select[Range[350], q]
-
PARI
is(k) = #select(x -> x > 2, factor(k)[, 2]) == 1;
Comments