OFFSET
0,3
COMMENTS
This triangle is a refinement of the triangle A061260.
Parts of size s and multiplicity m can be partitioned into sub-partitions in binomial(m + A000041(s) - 1, m) ways. - Andrew Howroyd, Oct 04 2025
LINKS
Andrew Howroyd, Table of n, a(n) for n = 0..2713 (rows 0..20)
FORMULA
T(n,1) = A000041(n).
EXAMPLE
Triangle begins:
0 | 1;
1 | 1;
2 | 2, 1;
3 | 3, 2, 1;
4 | 5, 3, 3, 2, 1;
5 | 7, 5, 6, 3, 3, 2, 1;
6 | 11, 7, 10, 6, 5, 6, 4, 3, 3, 2, 1;
7 | 15, 11, 14, 15, 7, 10, 6, 9, 5, 6, 4, 3, 3, 2, 1;
...
T(6,4) = 6 corresponds to the partition {3,3} which has twice partitions {1+1+1, 1+1+1}, {1+1+1, 1+2}, {1+1+1, 3}, {1+2, 1+2}, {1+2, 3}, {3, 3}.
A061260(6,3) = 15 can be derived from partitions 4+1+1, 3+2+1, and 2+2+2 corresponding to T(6,5) + T(6,6) + T(6,7) = 5 + 6 + 4 = 15 cases.
PROG
(PARI)
C(sig)={my(S=Set(sig)); prod(k=1, #S, my(c=#select(t->t==S[k], sig)); binomial(c+numbpart(S[k])-1, c)) }
Row(n)={apply(C, [Vecrev(p) | p<-partitions(n)])}
{ for(n=0, 7, print(Row(n))) } \\ Andrew Howroyd, Oct 04 2025
CROSSREFS
KEYWORD
AUTHOR
Alford Arnold, Jul 19 2010
EXTENSIONS
Edited, a(0)=1 prepended and a(45) onwards from Andrew Howroyd, Oct 04 2025
STATUS
approved
