OFFSET
1,1
COMMENTS
Numbers divisible by the squares of exactly four distinct primes.
The asymptotic density of this sequence is (eta_1^4 - 6*eta_1^2*eta_2 + 3*eta_2^2 + 8*eta_1*eta_3 - 6*eta_4)/(4*Pi^2) = 0.0000970457..., where eta_j = Sum_{p prime} 1/(p^2-1)^j (Pomerance and Schinzel, 2011).
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
Carl Pomerance and Andrzej Schinzel, Multiplicative Properties of Sets of Residues, Moscow Journal of Combinatorics and Number Theory, Vol. 1, No. 1 (2011), pp. 52-66. See pp. 61-62.
EXAMPLE
44100 = 2^2 * 3^2 * 5^2 * 7^2 is a term since it has exactly 4 prime factors, 2, 3, 5 and 7, that are non-unitary.
MATHEMATICA
Select[Range[620000], Count[FactorInteger[#][[;; , 2]], _?(#1 > 1 &)] == 4 &]
CROSSREFS
KEYWORD
nonn
AUTHOR
Amiram Eldar, Nov 01 2020
STATUS
approved