A384905 Triangle read by rows where T(n,k) is the number of strict integer partitions of n with k maximal anti-runs (decreasing by more than 1).
1, 0, 1, 0, 1, 0, 0, 1, 1, 0, 0, 2, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 3, 0, 1, 0, 0, 0, 0, 3, 2, 0, 0, 0, 0, 0, 0, 4, 2, 0, 0, 0, 0, 0, 0, 0, 5, 2, 1, 0, 0, 0, 0, 0, 0, 0, 6, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 7, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0
Offset: 0
Examples
The T(10,2) = 3 strict partitions with 2 maximal anti-runs are: (7,2,1), (5,4,1), (5,3,2). Triangle begins: 1 0 1 0 1 0 0 1 1 0 0 2 0 0 0 0 2 1 0 0 0 0 3 0 1 0 0 0 0 3 2 0 0 0 0 0 0 4 2 0 0 0 0 0 0 0 5 2 1 0 0 0 0 0 0 0 6 3 0 1 0 0 0 0 0 0 0 7 4 1 0 0 0 0 0 0 0 0 0 9 3 3 0 0 0 0 0 0 0 0 0
Programs
-
Mathematica
Table[Length[Select[IntegerPartitions[n],UnsameQ@@#&&Length[Split[#,#1!=#2+1&]]==k&]],{n,0,10},{k,0,n}]