OFFSET
1,2
EXAMPLE
The a(4) = 11 pairs:
4 <= (4)
3 <= (3,1)
4 <= (3,1)
4 <= (2,2)
2 <= (2,1,1)
3 <= (2,1,1)
4 <= (2,1,1)
1 <= (1,1,1,1)
2 <= (1,1,1,1)
3 <= (1,1,1,1)
4 <= (1,1,1,1)
MATHEMATICA
ReplaceListRepeated[forms_, rerules_]:=Union[Flatten[FixedPointList[Function[pre, Union[Flatten[ReplaceList[#, rerules]&/@pre, 1]]], forms], 1]];
nexos[ptn_]:=If[Length[ptn]==0, {0}, Union@@Select[ReplaceListRepeated[{Sort[ptn]}, {{foe___, x_, mie___, y_, afe___}:>Sort[Append[{foe, mie, afe}, x+y]], {foe___, x_, mie___, y_, afe___}:>Sort[Append[{foe, mie, afe}, x*y]]}], Length[#]==1&]];
Table[Total[Length/@nexos/@IntegerPartitions[n]], {n, 20}]
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Gus Wiseman, Oct 01 2018
STATUS
approved