OFFSET
1,4
COMMENTS
A positive subset-sum is a pair (h,g), where h is a positive integer and g is an integer partition, such that some submultiset of g sums to h. A triangle consists of a root sum r and a sequence of positive subset-sums ((h_1,g_1),...,(h_k,g_k)) such that the sequence (h_1,...,h_k) is weakly decreasing and has a submultiset summing to r. The composite of a triangle is (r, g_1 + ... + g_k) where + is multiset union.
EXAMPLE
We write positive subset-sum triangles in the form rootsum(branch,...,branch). The a(8) = 13 triangles:
1(1(1,1,1))
2(2(1,1,1))
3(3(1,1,1))
1(1(1),1(1,1))
2(1(1),1(1,1))
1(1(1),2(1,1))
2(1(1),2(1,1))
3(1(1),2(1,1))
1(1(1,1),1(1))
2(1(1,1),1(1))
1(1(1),1(1),1(1))
2(1(1),1(1),1(1))
3(1(1),1(1),1(1))
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Gus Wiseman, Jun 27 2018
STATUS
approved