OFFSET
1,2
COMMENTS
Numbers whose prime factorization contains exponents that are either 1 or even.
Numbers whose powerful part (A057521) is a square.
The asymptotic density of this sequence is Product_{p prime} (1 - 1/(p^2*(p+1))) = 0.881513... (A065465).
Complement of A295661. - Vaclav Kotesovec, Jul 07 2020
Differs from A096432 in having or not having 1, 256, 432, 648, 768, 1280, 1728, 1792, 2000, 2160, 2304,... - R. J. Mathar, Jul 22 2020
Equivalently, numbers k whose squarefree part (A007913) is a unitary divisor, or gcd(A007913(k), A008833(k)) = 1. - Amiram Eldar, Oct 09 2022
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
Eckford Cohen, Some asymptotic formulas in the theory of numbers, Trans. Amer. Math. Soc., Vol. 112, No. 2 (1964), pp. 214-227. See corollary 3.1.2, p. 222.
EXAMPLE
12 is a term since the largest square dividing 12 is 4, and 4 and 12/4 = 3 are coprime.
MATHEMATICA
seqQ[n_] := AllTrue[FactorInteger[n][[;; , 2]], # == 1 || EvenQ[#] &]; Select[Range[100], seqQ]
PROG
(PARI) isok(k) = my(d=k/core(k)); gcd(d, k/d) == 1; \\ Michel Marcus, Jul 07 2020
CROSSREFS
KEYWORD
nonn
AUTHOR
Amiram Eldar, Jul 06 2020
STATUS
approved