A174713 Triangle read by rows, A173305 (A000009 shifted down twice) * A174712 (diagonalized variant of A000041).
1, 1, 1, 1, 2, 1, 2, 1, 2, 3, 2, 2, 4, 2, 2, 3, 5, 3, 4, 3, 6, 4, 4, 3, 5, 8, 5, 6, 6, 5, 10, 6, 8, 6, 5, 7, 12, 8, 10, 9, 10, 7, 15, 10, 12, 12, 10, 7, 11, 18, 12, 16, 15, 15, 14, 11, 22, 15, 20, 18, 20, 14, 11, 15
Offset: 0
Examples
First few rows of the triangle = 1; 1; 1, 1; 2, 1; 2, 1, 2; 3, 2, 2; 4, 2, 2, 3; 5, 3, 4, 3; 6, 4, 4, 3, 5; 8, 5, 6, 6, 5; 10, 6, 8, 6, 5, 7; 12, 8, 10, 9, 10, 7; 15, 10, 12, 12, 10, 7, 11; 18, 12, 16, 15, 15, 14, 11; 22, 15, 20, 18, 20, 14, 11, 15; ... From _Gus Wiseman_, Oct 23 2023: (Start) Row n = 9 counts the following partitions: (9) (72) (54) (63) (81) (711) (5211) (522) (6111) (621) (531) (3321) (4311) (432) (441) (51111) (321111) (411111) (42111) (4221) (333) (21111111) (32211) (3222) (22221) (33111) (2211111) (222111) (3111111) (111111111) (End)
Crossrefs
Programs
-
Mathematica
Table[Length[Select[IntegerPartitions[n],Total[Select[#,EvenQ]]==k&]],{n,0,15},{k,0,n,2}] (* Gus Wiseman, Oct 23 2023 *)
Comments