A365869 Numbers whose exponent of least prime factor in their prime factorization is even.
4, 9, 12, 16, 20, 25, 28, 36, 44, 45, 48, 49, 52, 60, 63, 64, 68, 76, 80, 81, 84, 92, 99, 100, 108, 112, 116, 117, 121, 124, 132, 140, 144, 148, 153, 156, 164, 169, 171, 172, 175, 176, 180, 188, 192, 196, 204, 207, 208, 212, 220, 225, 228, 236, 240, 244, 252, 256
Offset: 1
Examples
4 is a term since the exponent of the prime factor 2 in the factorization 4 = 2^2 is 2, which is even.
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
Programs
-
Mathematica
Select[Range[256], EvenQ[FactorInteger[#][[1, -1]]] &]
-
PARI
is(n) = n > 1 && !(factor(n)[1,2]%2);
Comments