OFFSET
1,2
COMMENTS
First differs from A030229 at n = 275. a(275) = 900 is the least term that is not squarefree and therefore not in A030229.
The least term whose exponents in its prime factorization are not all the same is 1080 = 2^3 * 3^3 * 5.
The least term whose exponents in its prime factorization are distinct is 1440 = 2^5 * 3^2 * 5.
Numbers k such that A346010(k) = 1.
Numbers k such that if the prime factorization of k is Product_{i} p_i^e_i, then Sum_{i} e_i/(e_i + 1) is an integer.
Includes all the squarefree numbers with an even number of prime divisors (A030229), i.e., the union of A006881, A046386, A067885, A123322, ...
If k is squarefree with m prime divisors then k^(m-1) is a term. E.g., the squares of the sphenic numbers (A162143) are terms.
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
EXAMPLE
6 is a term since it has 4 divisors, 1, 2, 3 and 6 and (omega(1) + omega(2) + omega(3) + omega(6))/4 = (0 + 1 + 1 + 2)/4 = 1 is an integer.
MATHEMATICA
f[p_, e_] := e/(e + 1); d[1] = 1; d[n_] := Denominator[Plus @@ f @@@ FactorInteger[n]]; Select[Range[200], d[#] == 1 &]
CROSSREFS
KEYWORD
nonn
AUTHOR
Amiram Eldar, Jul 01 2021
STATUS
approved