A353741 Irregular triangle read by rows where T(n,k) is the number of integer partitions of n with product k, all zeros removed.
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 2, 1, 1, 1, 1, 1, 2, 1, 2, 2, 1, 1, 1, 1, 2, 1, 2, 1, 2, 1, 1, 2, 1, 1, 1, 2, 1, 2, 1, 3, 1, 1, 3, 1, 3, 1, 1, 1, 1, 2, 1, 2, 1, 3, 2, 1, 3, 1, 1, 3, 2, 2, 2, 1, 1, 1, 1, 2, 1, 2, 1, 3, 2, 2, 3, 1, 1, 4, 2, 2, 1, 4, 1, 1, 1, 3, 2
Offset: 0
Examples
Triangle begins: 1 1 1 1 1 1 1 1 1 1 2 1 1 1 2 1 1 1 1 1 2 1 2 2 1 1 1 1 2 1 2 1 2 1 1 2 1 1 1 2 1 2 1 3 1 1 3 1 3 1 1 1 1 2 1 2 1 3 2 1 3 1 1 3 2 2 2 1 1 1 1 2 1 2 1 3 2 2 3 1 1 4 2 2 1 4 1 1 1 3 2 Row n = 7 counts the following partitions: 1111111 211111 31111 4111 511 61 7 421 331 52 43 22111 3211 2221 322
Crossrefs
Programs
-
Mathematica
DeleteCases[Table[Length[Select[IntegerPartitions[n],Times@@#==k&]],{n,0,10},{k,1,2^n}],0,2]
Comments