OFFSET
0,7
COMMENTS
Note that, by this definition, the partition (2,1) is sum-full, because (1,1,2) is a triple satisfying a + b = c.
EXAMPLE
The a(3) = 1 through a(15) = 11 partitions (A=10, B=11, C=12):
21 . . 42 421 431 63 532 542 84 643 653 A5
321 521 432 541 632 642 742 743 843
621 631 821 651 841 752 942
721 5321 921 A21 761 C21
4321 5421 5431 842 6432
6321 6421 B21 6531
7321 5432 7431
6431 7521
6521 8421
7421 9321
8321 54321
MATHEMATICA
Table[Length[Select[IntegerPartitions[n], UnsameQ@@#&&Select[Tuples[#, 3], #[[1]]+#[[2]]==#[[3]]&]!={}&]], {n, 0, 30}]
PROG
(Python)
from itertools import combinations_with_replacement
from collections import Counter
from sympy.utilities.iterables import partitions
def A363226(n): return sum(1 for p in partitions(n) if max(p.values(), default=0)==1 and any(q[0]+q[1]==q[2] for q in combinations_with_replacement(sorted(Counter(p).elements()), 3))) # Chai Wah Wu, Sep 20 2023
CROSSREFS
KEYWORD
nonn
AUTHOR
Gus Wiseman, Jul 19 2023
EXTENSIONS
a(31)-a(56) from Chai Wah Wu, Sep 20 2023
STATUS
approved