OFFSET
1,6
EXAMPLE
The a(72) = 4 factorizations are (2*3*12), (3*24), (6*12), (72). Missing from this list and not strict are (2*2*2*3*3), (2*2*3*6), (2*6*6), (2*2*18), while missing from the list and using perfect powers are (2*36), (2*4*9), (3*4*6), (4*18), (8*9).
MATHEMATICA
radQ[n_]:=Or[n==1, GCD@@FactorInteger[n][[All, 2]]==1];
facssr[n_]:=If[n<=1, {{}}, Join@@Table[Map[Prepend[#, d]&, Select[facssr[n/d], Min@@#>d&]], {d, Select[Rest[Divisors[n]], radQ]}]];
Table[Length[facssr[n]], {n, 100}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Gus Wiseman, Jan 04 2019
STATUS
approved