OFFSET
0,6
COMMENTS
Equivalently, partitions whose length does not divide their sum.
By conjugation, also the number of integer partitions of n with greatest part not dividing n.
EXAMPLE
The a(3) = 1 through a(8) = 11 partitions:
(21) (211) (32) (2211) (43) (332)
(41) (3111) (52) (422)
(221) (21111) (61) (431)
(311) (322) (521)
(2111) (331) (611)
(421) (22211)
(511) (32111)
(2221) (41111)
(3211) (221111)
(4111) (311111)
(22111) (2111111)
(31111)
(211111)
MATHEMATICA
Table[Length[Select[IntegerPartitions[n], !IntegerQ[Mean[#]]&]], {n, 0, 30}]
CROSSREFS
Below, "!" means either enumerative or set theoretical complement.
The version for nonempty subsets is !A051293.
The strict case is !A102627.
The conjugate is ranked by !A326836.
The conjugate strict version is !A326850.
These partitions are ranked by A348551.
A000041 counts integer partitions.
KEYWORD
nonn
AUTHOR
Gus Wiseman, Nov 14 2021
STATUS
approved