OFFSET
1,1
COMMENTS
First differs from A212164 in having 3600.
First differs from A293243 in having 18000.
A prime index of n is a number m such that prime(m) divides n. The multiset of prime indices of n is row n of A112798.
Also numbers whose prime indices cannot be partitioned into a multiset of sets with distinct sums.
LINKS
Robert Price, Table of n, a(n) for n = 1..1003
EXAMPLE
There are 4 factorizations of 18000 into squarefree numbers:
(2*2*3*5*10*30)
(2*2*5*6*10*15)
(2*2*10*15*30)
(2*5*6*10*30)
but none of these has all distinct sums of prime indices, so 18000 is in the sequence.
MATHEMATICA
hwt[n_]:=Total[Cases[FactorInteger[n], {p_, k_}:>PrimePi[p]*k]];
sqfics[n_]:=If[n<=1, {{}}, Join@@Table[Map[Prepend[#, d]&, Select[sqfics[n/d], Min@@#>=d&]], {d, Select[Rest[Divisors[n]], SquareFreeQ]}]]
Select[Range[nn], Length[Select[sqfics[#], UnsameQ@@hwt/@#&]]==0&]
CROSSREFS
KEYWORD
nonn
AUTHOR
Gus Wiseman, Mar 12 2025
STATUS
approved
