OFFSET
0,9
EXAMPLE
The partition (3,2,2) has sum + product equal to 7 + 12 = 19, so is counted under a(19).
The a(n) partitions for n = 4, 8, 14, 24, 59:
(2) (4) (7) (12) (9,5)
(2,2) (4,2) (4,4) (11,4)
(2,2,2) (4,2,2) (14,3)
(2,2,2,2) (19,2)
(4,4,3)
(11,2,2)
(4,3,2,2)
(3,2,2,2,2)
MATHEMATICA
Table[Length[Select[Select[Join@@Array[IntegerPartitions, n+1, 0], FreeQ[#, 1]&], Total[#]+Times@@#==n&]], {n, 0, 30}]
CROSSREFS
Arrays counting multisets by sum and product:
Counting and ranking multisets by comparing sum and product:
A318950 counts factorizations by sum.
KEYWORD
nonn,new
AUTHOR
Gus Wiseman, Jan 03 2025
STATUS
approved