A375144 Numbers whose prime factorization has exactly two exponents that equal 2 and has no higher exponents.
36, 100, 180, 196, 225, 252, 300, 396, 441, 450, 468, 484, 588, 612, 676, 684, 700, 828, 882, 980, 1044, 1089, 1100, 1116, 1156, 1225, 1260, 1300, 1332, 1444, 1452, 1476, 1521, 1548, 1575, 1692, 1700, 1900, 1908, 1980, 2028, 2100, 2116, 2124, 2156, 2178, 2196
Offset: 1
Examples
36 = 2^2 * 3^2 is a term since its prime factorization has exactly two exponents and both are equal to 2.
Links
Programs
-
Mathematica
q[n_] := Module[{e = Sort[FactorInteger[n][[;; , 2]], Greater]}, Length[e] > 1 && e[[1;;2]] == {2, 2} && If[Length[e] > 2, e[[3]] == 1, True]]; Select[Range[2200], q]
-
PARI
is(k) = {my(e = vecsort(factor(k)[,2], , 4)~); #e > 1 && e[1..2] == [2,2] && if(#e > 2, e[3] == 1, 1);}
Comments