OFFSET
1,14
COMMENTS
Antidiagonal sums of A379678.
EXAMPLE
The set {2,3,4,6} has sum 15 and product 144 so is counted under a(159).
The a(n) sets for n = 47, 89, 119, 159, 179, 239:
{5,7} {8,9} {2,39} {3,39} {2,59} {2,79}
{2,15} {2,29} {3,29} {4,31} {3,44} {3,59}
{3,11} {4,17} {4,23} {7,19} {4,35} {4,47}
{2,3,6} {5,14} {5,19} {9,15} {5,29} {5,39}
{2,3,12} {7,14} {2,3,22} {8,19} {7,29}
{9,11} {2,4,17} {9,17} {9,23}
{2,7,10} {11,14} {11,19}
{2,3,4,6} {14,15}
{2,9,12}
MATHEMATICA
facs[n_]:=If[n<=1, {{}}, Join@@Table[Map[Prepend[#, d]&, Select[facs[n/d], Min@@#>=d&]], {d, Rest[Divisors[n]]}]];
Table[Length[Select[Join@@Array[facs, n], UnsameQ@@#&&Total[#]+Times@@#==n&]], {n, 100}]
CROSSREFS
Arrays counting multisets by sum and product:
Counting and ranking multisets by comparing sum and product:
A318950 counts factorizations by sum.
KEYWORD
nonn
AUTHOR
Gus Wiseman, Jan 03 2025
STATUS
approved