A360906 Numbers with the same number of cubefree divisors and 3-full divisors.
1, 16, 81, 384, 625, 640, 896, 1296, 1408, 1664, 2176, 2401, 2432, 2944, 3712, 3968, 4374, 4736, 5248, 5504, 6016, 6784, 7552, 7808, 8576, 9088, 9216, 9344, 10000, 10112, 10624, 10935, 11392, 12416, 12928, 13184, 13696, 13952, 14464, 14641, 15309, 16256, 16768
Offset: 1
Keywords
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
Crossrefs
Programs
-
Mathematica
q[n_] := Module[{e = FactorInteger[n][[;; , 2]]}, Times @@ (Min[#, 3] & /@ (e + 1)) == Times @@ (Max[#, 1] & /@ (e - 1))]; q[1] = True; Select[Range[10^4], q]
-
PARI
is(k) = {my(e = factor(k)[,2]); prod(i = 1, #e, min(e[i] + 1, 3)) == prod(i = 1, #e, max(e[i] - 1, 1)); }
Comments