A381823 Odd cubefree numbers that are not squarefree.
9, 25, 45, 49, 63, 75, 99, 117, 121, 147, 153, 169, 171, 175, 207, 225, 245, 261, 275, 279, 289, 315, 325, 333, 361, 363, 369, 387, 423, 425, 441, 475, 477, 495, 507, 525, 529, 531, 539, 549, 575, 585, 603, 605, 637, 639, 657, 693, 711, 725, 735, 747, 765, 775
Offset: 1
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
Crossrefs
Programs
-
Mathematica
Select[Range[1, 1000, 2], Max[FactorInteger[#][[;;, 2]]] == 2 &]
-
PARI
isok(k) = k % 2 && if(k == 1, 0, vecmax(factor(k)[, 2]) == 2);
Comments