A367403 Number of integer partitions of n whose semi-sums do not cover an interval of positive integers.
0, 0, 0, 0, 0, 1, 2, 5, 9, 13, 22, 30, 46, 63, 91, 118, 167, 216, 290, 374, 490, 626, 810, 1022, 1297, 1628, 2051, 2551, 3176, 3929, 4845, 5963, 7311, 8932, 10892, 13227, 16035, 19395, 23397, 28156, 33803, 40523, 48439, 57832, 68876, 81903, 97212, 115198
Offset: 0
Keywords
Examples
The a(0) = 0 through a(9) = 13 partitions: . . . . . (311) (411) (331) (422) (441) (3111) (421) (431) (522) (511) (521) (531) (4111) (611) (621) (31111) (3311) (711) (4211) (4311) (5111) (5211) (41111) (6111) (311111) (33111) (42111) (51111) (411111) (3111111)
Crossrefs
Programs
-
Mathematica
Table[Length[Select[IntegerPartitions[n], (d=Total/@Subsets[#,{2}];If[d=={}, {}, Range[Min@@d,Max@@d]]!=Union[d])&]], {n,0,15}]
Comments