OFFSET
1,7
LINKS
EXAMPLE
The a(32) = 5 factorizations of 81:
(3*3*3*3)
(3*3*9)
(3*27)
(9*9)
(81)
The a(32) = 5 multiset partitions of the prime indices of 81 into constant multisets:
{{2},{2},{2},{2}}
{{2},{2},{2,2}}
{{2},{2,2,2}}
{{2,2},{2,2}}
{{2,2,2,2}}
MATHEMATICA
nn=100;
facsusing[s_, n_]:=If[n<=1, {{}}, Join@@Table[Map[Prepend[#, d]&, Select[facsusing[Select[s, Divisible[n/d, #]&], n/d], Min@@#>=d&]], {d, Select[s, Divisible[n, #]&]}]];
y=Select[Range[nn], PrimePowerQ];
Table[Length[facsusing[Rest[y], n]], {n, y}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Gus Wiseman, Sep 15 2019
STATUS
approved