A371956 Number of non-biquanimous compositions of 2n.
0, 1, 3, 9, 23, 63, 146, 364
Offset: 0
Examples
The a(1) = 1 through a(3) = 9 compositions: (2) (4) (6) (1,3) (1,5) (3,1) (2,4) (4,2) (5,1) (1,1,4) (1,4,1) (2,2,2) (4,1,1)
Crossrefs
The complement is counted by A064914.
Programs
-
Mathematica
Table[Length[Select[Join@@Permutations/@IntegerPartitions[2n], !MemberQ[Total/@Subsets[#],n]&]],{n,0,5}]
Comments