OFFSET
0,4
COMMENTS
Definition: a partition is separable if there is an ordering of its parts in which no consecutive parts are identical; otherwise the partition is inseparable.
A partition with k parts is separable if and only if there is no part whose multiplicity is greater than ceiling(k/2). - Andrew Howroyd, Jan 31 2024
LINKS
Andrew Howroyd, Table of n, a(n) for n = 0..1000
EXAMPLE
For n=5, the partition 1+2+2 is separable as 2+1+2, and 2+1+1+1 is inseparable.
MATHEMATICA
Table[Length[Select[Map[Quotient[(1 + Length[#]), Max[Map[Length, Split[#]]]] &,
IntegerPartitions[nn]], # > 1 &]], {nn, 50}] (* Peter J. C. Moses, May 07 2019 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, May 08 2019
EXTENSIONS
a(0)=1 prepended by Alois P. Heinz, Jan 20 2024
STATUS
approved