A331022 Numbers k such that the number of strict integer partitions of k is a power of 2.
0, 1, 2, 3, 4, 6, 9, 16, 20, 29, 34, 45
Offset: 0
Examples
The strict integer partitions of the initial terms: (1) (2) (3) (4) (6) (9) (2,1) (3,1) (4,2) (5,4) (5,1) (6,3) (3,2,1) (7,2) (8,1) (4,3,2) (5,3,1) (6,2,1)
Crossrefs
Programs
-
Mathematica
Select[Range[0,1000],IntegerQ[Log[2,PartitionsQ[#]]]&]
Comments