OFFSET
0,3
COMMENTS
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].
Wolfdieter Lang, First 10 rows and more.
FORMULA
EXAMPLE
Triangle begins:
0 | 1;
1 | 1;
2 | 2, 1;
3 | 6, 2, 1;
4 | 24, 6, 4, 2, 1;
5 | 120, 24, 12, 6, 4, 2, 1;
6 | 720, 120, 48, 36, 24, 12, 8, 6, 4, 2, 1;
...
PROG
(PARI) C(sig)={prod(k=1, #sig, sig[k]!)}
Row(n)={apply(C, [Vecrev(p) | p<-partitions(n)])}
{ for(n=0, 7, print(Row(n))) } \\ Andrew Howroyd, Oct 03 2025
CROSSREFS
KEYWORD
nonn,easy,tabf
AUTHOR
Wolfdieter Lang, Oct 12 2007
EXTENSIONS
Name improved and a(0) prepended by Andrew Howroyd, Oct 03 2025
STATUS
approved
