A335989 Terms of A301517 that are not exponentially odd numbers (A268335).
12500, 18252, 21600, 37500, 50000, 67228, 84500, 87500, 91260, 127764, 137500, 146016, 150000, 151200, 162500, 200000, 200772, 201684, 212500, 231868, 237500, 237600, 253500, 262500, 268912, 274400, 280800, 287500, 310284, 336140, 337500, 346788, 350000, 362500
Offset: 1
Keywords
Examples
12500 = 2^2 * 5^5 is a term since the exponent of its prime factor 2 is 2 which even, and therefore it is not an exponentially odd number, and the sum of its squarefree divisors, A048250(12500) = 18 divides the sum of its nonsquarefree divisors, A162296(12500) = 27324 = 18 * 1518.
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
Programs
-
Mathematica
f[p_, e_] := (p^(e + 1) - 1)/(p^2 - 1); Select[Range[2, 4*10^5], Max[Last /@ (fct = FactorInteger[#])] > 1 && ! AllTrue[Last /@ fct, OddQ] && (r = Times @@ (f @@@ fct)) > 1 && IntegerQ[r] &]
Comments