OFFSET
1,1
COMMENTS
Subsequence of A072413 and differs from it by not having the terms 216, 1000, 1080, 1512, ... .
Each term can be represented in a unique way as m * k^2, where m is an exponentially odd number (A268335) and k is a composite number that is coprime to m.
The asymptotic density of this sequence is 1 - Product_{p prime} (1 - 1/(p*(p+1))) * (1 + Sum_{p prime} 1/(p^2+p-1)) = 0.032993560887093165933... .
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
MATHEMATICA
Select[Range[1800], Count[FactorInteger[#][[;; , 2]], _?EvenQ] > 1 &]
PROG
(PARI) is(k) = if(k == 1, 0, my(e = factor(k)[, 2]); #select(x -> !(x%2), e) > 1);
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Amiram Eldar, Nov 09 2024
STATUS
approved