A364670 Number of strict integer partitions of n with a part equal to the sum of two distinct others. A variation of sum-full strict partitions.
0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 3, 1, 4, 3, 7, 6, 10, 10, 14, 16, 24, 25, 34, 39, 48, 59, 71, 81, 103, 120, 136, 166, 194, 226, 260, 312, 353, 419, 473, 557, 636, 742, 824, 974, 1097, 1266, 1418, 1646, 1837, 2124, 2356, 2717, 3029, 3469, 3830, 4383, 4884, 5547
Offset: 0
Keywords
Examples
The a(6) = 1 through a(16) = 10 strict partitions (A = 10): 321 . 431 . 532 5321 642 5431 743 6432 853 541 651 6421 752 6531 862 4321 5421 7321 761 7431 871 6321 5432 7521 6532 6431 9321 6541 6521 54321 7432 8321 7621 8431 A321 64321
Crossrefs
Programs
-
Mathematica
Table[Length[Select[IntegerPartitions[n], UnsameQ@@#&&Intersection[#, Total/@Subsets[#,{2}]]!={}&]],{n,0,30}]