OFFSET
1,1
COMMENTS
Ordering of exponents matters; 1575 and 2205 have unordered prime signatures (2, 2, 1) and (2, 1, 2) respectively.
EXAMPLE
1575 = 3^2 * 5^2 * 7 has prime signature (2, 2, 1) and is an odd primitive abundant number (A006038). Since 1575 is the smallest such number, it is in the sequence. - Michael B. Porter, Nov 24 2018
MATHEMATICA
lsig={}; lpab = {}; seq={}; Do[ d=Divisors[n]; If[Total[d] > 2 n && Intersection[ lpab, d] == {}, AppendTo[lpab, n]; sig=FactorInteger[n][[;; , 2]]; If[!MemberQ[ lsig, sig], AppendTo[seq, n]; AppendTo[lsig, sig]]], {n, 3, 1700000, 2}]; seq (* Amiram Eldar, Dec 09 2018 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
David A. Corneth, Aug 18 2018
STATUS
approved