A375146 Numbers whose prime factorization has exactly one exponent that is larger than 3.
16, 32, 48, 64, 80, 81, 96, 112, 128, 144, 160, 162, 176, 192, 208, 224, 240, 243, 256, 272, 288, 304, 320, 324, 336, 352, 368, 384, 400, 405, 416, 432, 448, 464, 480, 486, 496, 512, 528, 544, 560, 567, 576, 592, 608, 624, 625, 640, 648, 656, 672, 688, 704, 720
Offset: 1
Examples
16 = 2^4 is a term since its prime factorization has exactly one exponent, 4, that is larger than 3.
Links
Programs
-
Mathematica
q[n_] := Count[FactorInteger[n][[;;, 2]], _?(# > 3 &)] == 1; Select[Range[1000], q]
-
PARI
is(k) = #select(x -> x > 3, factor(k)[, 2]) == 1;
Comments