OFFSET
0,3
COMMENTS
This triangle is a refinement of the triangle A060642.
LINKS
Andrew Howroyd, Table of n, a(n) for n = 0..2713 (rows 0..20)
M. Abramowitz and I. A. Stegun, eds., Handbook of Mathematical Functions, National Bureau of Standards, Applied Math. Series 55, Tenth Printing, 1972 [alternative scanned copy].
EXAMPLE
Triangle begins:
0 | 1;
1 | 1;
2 | 2, 1;
3 | 3, 4, 1;
4 | 5, 6, 4, 6, 1;
5 | 7, 10, 12, 9, 12, 8, 1;
6 | 11, 14, 20, 9, 15, 36, 8, 12, 24, 10, 1;
7 | 15, 22, 28, 30, 21, 60, 27, 36, 20, 72, 32, 15, 40, 12, 1;
...
T(6,4) = 9 corresponds to the partition {3,3}. Each of the two parts can independently be one of 1+1+1, 1+2 or 3+3 giving a total of 3*3 = 9.
PROG
(PARI)
C(sig)={my(S=Set(sig)); prod(k=1, #sig, numbpart(sig[k]))*(#sig)!/prod(k=1, #S, (#select(t->t==S[k], sig))!)}
Row(n)={apply(C, [Vecrev(p) | p<-partitions(n)])}
{ for(n=0, 7, print(Row(n))) } \\ Andrew Howroyd, Oct 03 2025
CROSSREFS
KEYWORD
AUTHOR
Alford Arnold, May 22 2006
EXTENSIONS
More terms from R. J. Mathar, Jul 12 2013
Name improved and a(0)=1 prepended by Andrew Howroyd, Oct 03 2025
STATUS
approved
