OFFSET
1,6
LINKS
Michael De Vlieger, Table of n, a(n) for n = 1..16384
EXAMPLE
The a(36)=11 ways are:
(2)*(3)*(6),
(2)*(3*6), (2*6)*(3), (2)*(18), (3)*(12), (4)*(9),
(2*3*6), (2*18), (3*12), (4*9), (36).
MATHEMATICA
sfs[n_]:=If[n<=1, {{}}, Join@@Table[Map[Prepend[#, d]&, Select[sfs[n/d], Min@@#>d&]], {d, Rest[Divisors[n]]}]];
sps[{}]:={{}}; sps[set:{i_, ___}]:=Join@@Function[s, Prepend[#, s]&/@sps[Complement[set, s]]]/@Cases[Subsets[set], {i, ___}];
Table[Length[Join@@Function[fac, Select[sps[fac], UnsameQ@@Times@@@#&]]/@sfs[n]], {n, 100}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Gus Wiseman, Nov 08 2017
STATUS
approved