A353426 Number of integer partitions of n that are empty or a singleton or whose multiplicities are a sub-multiset that is already counted.
1, 1, 1, 1, 2, 1, 2, 1, 1, 2, 2, 1, 2, 2, 3, 3, 5, 4, 6, 5, 6, 6, 7, 8, 10, 12, 12, 14, 13, 13, 18, 15, 16, 19, 20, 20, 32, 37, 53, 74, 105
Offset: 0
Examples
The a(n) partitions for selected n (A..M = 10..22): n=1: n=4: n=14: n=16: n=17: n=18: n=22: ------------------------------------------------------------------ (1) (4) (E) (G) (H) (I) (M) (22) (5522) (4444) (652211) (7722) (9922) (532211) (6622) (742211) (752211) (972211) (642211) (832211) (842211) (A62211) (732211) (932211) (B52211) (333222111) (C42211) (D32211)
Crossrefs
Programs
-
Mathematica
oosQ[y_]:=Length[y]<=1||MemberQ[Subsets[Sort[y],{Length[Union[y]]}],Sort[Length/@Split[y]]]&&oosQ[Sort[Length/@Split[y]]]; Table[Length[Select[IntegerPartitions[n],oosQ]],{n,0,30}]
Comments