A381822 Odd cubefree numbers: odd numbers that are not divisible by any cube greater than 1.
1, 3, 5, 7, 9, 11, 13, 15, 17, 19, 21, 23, 25, 29, 31, 33, 35, 37, 39, 41, 43, 45, 47, 49, 51, 53, 55, 57, 59, 61, 63, 65, 67, 69, 71, 73, 75, 77, 79, 83, 85, 87, 89, 91, 93, 95, 97, 99, 101, 103, 105, 107, 109, 111, 113, 115, 117, 119, 121, 123, 127, 129, 131
Offset: 1
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
Programs
-
Mathematica
cubeFreeQ[n_] := AllTrue[FactorInteger[n][[;;, 2]], # < 3 &]; Select[Range[1, 150, 2], cubeFreeQ]
-
PARI
isok(k) = k % 2 && if(k == 1, 1, vecmax(factor(k)[, 2]) < 3);
Comments