A383508 Number of integer partitions of n that are both Look-and-Say and section-sum partitions.
1, 1, 2, 2, 3, 3, 6, 7, 9, 12, 14, 19, 22, 27, 30, 35, 42, 50, 58, 68, 82, 92, 112, 126, 149, 174, 199, 225, 263, 299, 337, 388, 435, 488, 545, 635, 681, 775, 841, 948, 1051, 1181, 1271, 1446, 1553, 1765, 1896, 2141, 2285, 2608, 2799
Offset: 0
Keywords
Examples
The a(1) = 1 through a(8) = 9 partitions: (1) (2) (3) (4) (5) (6) (7) (8) (11) (111) (22) (311) (33) (322) (44) (1111) (11111) (222) (331) (332) (411) (511) (611) (3111) (4111) (2222) (111111) (31111) (5111) (1111111) (41111) (311111) (11111111)
Crossrefs
Programs
-
Mathematica
disjointFamilies[y_]:=Select[Tuples[IntegerPartitions /@ Length/@Split[y]],UnsameQ@@Join@@#&]; conj[y_]:=If[Length[y]==0,y, Table[Length[Select[y,#>=k&]],{k,1,Max[y]}]]; Table[Length[Select[IntegerPartitions[n], disjointFamilies[#]!={}&&disjointFamilies[conj[#]]!={}&]], {n,0,30}]
Comments