OFFSET
0,5
COMMENTS
a(n) is number of integer partitions of n whose Heinz number belongs to A353393, where the Heinz number of a partition (y_1,...,y_k) is prime(y_1)*...*prime(y_k).
EXAMPLE
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)
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}]
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Gus Wiseman, May 16 2022
STATUS
approved