A322480 Irregular triangular array read by rows: T(n,k), n>=1, is the number of ordered factorizations corresponding to each unordered factorization, indexed by k.
1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 2, 1, 1, 1, 1, 2, 1, 1, 2, 2, 3, 1, 1, 2, 1, 2, 1, 2, 1, 3, 1, 1, 1, 2, 2, 3, 1, 1, 2, 2, 3, 1, 2, 1, 2, 1, 1, 2, 2, 2, 3, 6, 4, 1, 1, 1, 2, 1, 2, 1, 1, 2, 2, 3, 1, 1, 2, 2, 2, 6, 1, 1, 2, 2, 3, 3, 4, 1, 1, 2, 1, 2, 1, 2, 1, 2, 2, 2, 3, 1, 6, 3, 6, 1, 1, 2, 1, 2, 1, 2, 2, 3, 2, 6, 4, 1, 1, 2, 2, 2, 6, 1, 1, 2, 2, 3, 1, 2, 2, 3, 1, 2, 1, 1, 2, 2, 2, 3, 2, 6, 6, 4, 12, 5
Offset: 1
Examples
1; 1; 1; 1, 1; 1; 1, 2; 1; 1, 2, 1; 1, 1; 1, 2; 1; 1, 2, 2, 3; etc. The 12th row is 1,2,2,3, because 12 can be factored as 12, 6*2, 3*4 or 3*2*2 with respective sets of ordered factorizations {12}, {6*2, 2*6}, {4*3, 3*4} and {3*2*2, 2*3*2, 2*2*3}, with respective cardinalities 1, 2, 2 and 3.
Comments