OFFSET
1,6
COMMENTS
A partition is separable if there is an ordering of its parts in which no consecutive parts are identical. See A325534 for a guide to related sequences.
MATHEMATICA
(separable = Table[Map[#[[1]] &, Select[Map[{#,
Quotient[(1 + Length[#]), Max[Map[Length, Split[#]]]]} &,
IntegerPartitions[nn]], #[[2]] > 1 &]], {nn, 60}]) // ColumnForm;
Map[Map[#[[1]] &, Select[Map[{#, Length[Union[#]]} &, #], #[[2]] == 2 &]] &,
separable] // ColumnForm;
Map[Length[Select[Map[{#, Length[Union[#]]} &, #], EvenQ[#[[2]]] &]] &,
separable] (* A325723 *)
Map[Length[Select[Map[{#, Length[Union[#]]} &, #], OddQ[#[[2]]] &]] &,
separable] (* A325724 *)
(* Peter J. C. Moses, May 08 2019 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, May 19 2019
STATUS
approved