A352131 Number of strict integer partitions of n with same number of even parts as odd conjugate parts.
1, 0, 0, 1, 0, 1, 1, 1, 0, 1, 2, 1, 1, 2, 3, 2, 2, 3, 4, 3, 4, 5, 5, 5, 6, 7, 7, 8, 10, 10, 10, 12, 14, 15, 14, 17, 21, 20, 20, 25, 28, 28, 29, 34, 39, 39, 40, 47, 52, 53, 56, 64, 70, 71, 77, 86, 92, 97, 104, 114, 122
Offset: 0
Keywords
Examples
The a(n) strict partitions for selected n: n = 3 10 14 18 21 24 ---------------------------------------------------------------------- (2,1) (6,4) (8,6) (10,8) (11,10) (8,7,5,4) (4,3,2,1) (5,4,3,2) (6,5,4,3) (8,6,4,3) (9,8,4,3) (6,5,2,1) (7,6,3,2) (8,7,4,2) (10,8,4,2) (8,7,2,1) (10,8,2,1) (10,9,3,2) (6,5,4,3,2,1) (11,10,2,1) (8,6,4,3,2,1)
Crossrefs
There are four statistics:
There are four other pairings of statistics:
There are three double-pairings of statistics:
Programs
-
Mathematica
conj[y_]:=If[Length[y]==0,y,Table[Length[Select[y,#>=k&]],{k,1,Max[y]}]]; Table[Length[Select[IntegerPartitions[n],UnsameQ@@#&&Count[#,?EvenQ]==Count[conj[#],?OddQ]&]],{n,0,30}]