A366761 Numbers that have at least one exponent in their canonical prime factorization that is divisible by 3.
8, 24, 27, 40, 54, 56, 64, 72, 88, 104, 108, 120, 125, 135, 136, 152, 168, 184, 189, 192, 200, 216, 232, 248, 250, 264, 270, 280, 296, 297, 312, 320, 328, 343, 344, 351, 360, 375, 376, 378, 392, 408, 424, 432, 440, 448, 456, 459, 472, 488, 500, 504, 512, 513, 520
Offset: 1
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
- Eckford Cohen, Some sets of integers related to the k-free integers, Acta Sci. Math. (Szeged), Vol. 22, No. 3-4 (1961), pp. 223-233.
Programs
-
Mathematica
q[n_] := ! AllTrue[FactorInteger[n][[;; , 2]], ! Divisible[#, 3] &]; Select[Range[500], q]
-
PARI
is(n) = {my(f = factor(n)); for(i = 1, #f~, if(!(f[i, 2]%3), return(1))); 0;}
Formula
Sum_{n>=1} 1/a(n)^s = zeta(s) * (1 - zeta(3*s) * Product_{p prime} (1 - 2/p^(3*s) + 1/p^(4*s))), for s > 1.
Comments