A097305 Array of number of partitions of n with odd parts only and largest part 2*m-1 with m in {1,2,..., ceiling(n/2)}.
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 2, 1, 1, 1, 2, 2, 1, 1, 3, 2, 1, 1, 1, 3, 3, 2, 1, 1, 3, 4, 2, 1, 1, 1, 4, 4, 3, 2, 1, 1, 4, 5, 4, 2, 1, 1, 1, 4, 6, 5, 3, 2, 1, 1, 5, 7, 6, 4, 2, 1, 1, 1, 5, 8, 7, 5, 3, 2, 1, 1, 5, 9, 9, 6, 4, 2, 1, 1, 1, 6, 10, 10, 8, 5, 3, 2, 1, 1, 6, 11, 12, 10, 6, 4, 2, 1, 1, 1, 6
Offset: 1
Examples
[1]; [1]; [1,1]; [1,1]; [1,1,1]; [1,2,1]; [1,2,1,1]; [1,2,2,1]; ... T(8,2)=2 because there are two partitions of 8 with odd parts from {1,3} and 3 appears at least once, namely (1^5,3) and (1^2,3^2). T(6,2)=2 from 6= 3+3 = 1+1+1+3.
Links
- W. Lang, First 18 rows.
Crossrefs
Row sums: A000009.
Formula
T(n, m)= number of partitions of n with only odd parts and largest part is k:=2*m-1, m=1, 2, ..., ceiling(n/2).
Comments