OFFSET
1,3
COMMENTS
EXAMPLE
The a(1) = 1 through a(11) = 7 factorizations:
{} 2 4 6 8 12 16 18 24 30 32
2*2 2*3 2*4 2*6 2*8 2*9 3*8 5*6 4*8
2*2*2 3*4 4*4 3*6 4*6 2*15 2*16
2*2*3 2*2*4 2*3*3 2*12 3*10 2*2*8
2*2*2*2 2*2*6 2*3*5 2*4*4
2*3*4 2*2*2*4
2*2*2*3 2*2*2*2*2
MATHEMATICA
facs[n_]:=If[n<=1, {{}}, Join@@Table[Map[Prepend[#, d]&, Select[facs[n/d], Min@@#>=d&]], {d, Rest[Divisors[n]]}]];
Length@*facs/@First/@GatherBy[Range[1500], If[#==1, {}, Last/@FactorInteger[#]]&]
CROSSREFS
KEYWORD
nonn
AUTHOR
Gus Wiseman, Jan 10 2020
STATUS
approved