A377817 Numbers that have more than one even exponent in their prime factorization.
36, 100, 144, 180, 196, 225, 252, 300, 324, 396, 400, 441, 450, 468, 484, 576, 588, 612, 676, 684, 700, 720, 784, 828, 882, 900, 980, 1008, 1044, 1089, 1100, 1116, 1156, 1200, 1225, 1260, 1296, 1300, 1332, 1444, 1452, 1476, 1521, 1548, 1575, 1584, 1600, 1620, 1692, 1700, 1764, 1800
Offset: 1
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
Crossrefs
Programs
-
Mathematica
Select[Range[1800], Count[FactorInteger[#][[;; , 2]], _?EvenQ] > 1 &]
-
PARI
is(k) = if(k == 1, 0, my(e = factor(k)[, 2]); #select(x -> !(x%2), e) > 1);
Comments