OFFSET
1,2
COMMENTS
A squarefree semiprime (A006881) is a product of any two distinct primes.
Also numbers with an even number x of prime factors, whose prime multiplicities do not exceed x/2.
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
EXAMPLE
360 is in the sequence because it can be factored into squarefree semiprimes as (6*6*10).
4620 is in the sequence, and can be factored into squarefree semiprimes in 6 ways: (6*10*77), (6*14*55), (6*22*35), (10*14*33), (10*21*22), (14*15*22).
MATHEMATICA
sqfsemfacs[n_]:=If[n<=1, {{}}, Join@@Table[Map[Prepend[#, d]&, Select[sqfsemfacs[n/d], Min@@#>=d&]], {d, Select[Rest[Divisors[n]], And[SquareFreeQ[#], PrimeOmega[#]==2]&]}]];
Select[Range[100], And[EvenQ[PrimeOmega[#]], sqfsemfacs[#]!={}]&]
CROSSREFS
KEYWORD
nonn
AUTHOR
Gus Wiseman, Oct 23 2018
STATUS
approved