nn = 30; b = Table[2^n, {n, 0, nn}]; CoefficientList[Series[Product[1/(1 - x^m)^b[[m]], {m, nn}], {x, 0, nn}], x] (*
T. D. Noe, Nov 21 2011 *)
Table[SeriesCoefficient[E^(Sum[x^k/(1 - 2*x^k)/k, {k, 1, n}]), {x, 0, n}], {n, 0, 30}] (*
Vaclav Kotesovec, Sep 08 2014 *)
allnorm[n_Integer]:=Function[s, Array[Count[s, y_/; y<=#]+1&, n]]/@Subsets[Range[n-1]+1];
allnmsp[0]={}; allnmsp[1]={{{1}}}; allnmsp[n_Integer]:=allnmsp[n]=Join[allnmsp[n-1], List/@allnorm[n], Join@@Function[ptn, Append[ptn, #]&/@Select[allnorm[n-Length[Join@@ptn]], OrderedQ[{Last[ptn], #}]&]]/@allnmsp[n-1]];
Apply[SequenceForm, Select[allnmsp[4], Length[Join@@#]===4&], {2}] (* to construct the example *)
Table[Length[Complement[allnmsp[n], allnmsp[n-1]]], {n, 1, 8}] (*
Gus Wiseman, Mar 03 2016 *)