OFFSET
0,4
COMMENTS
A036043(n,k) gives the number of parts in the k-th integer partition of n.
LINKS
Andrew Howroyd, Table of n, a(n) for n = 0..2713 (rows 0..20)
FORMULA
T(n,k) = A036043(n,k)!.
EXAMPLE
Triangle begins:
0 | 1;
1 | 1;
2 | 1, 2;
3 | 1, 2, 6;
4 | 1, 2, 2, 6, 24;
5 | 1, 2, 2, 6, 6, 24, 120;
6 | 1, 2, 2, 2, 6, 6, 6, 24, 24, 120, 720;
7 | 1, 2, 2, 2, 6, 6, 6, 6, 24, 24, 24, 120, 120, 720, 5040;
...
A036043 begins 0 1 1 2 1 2 3 1 2 2 3 4 1 2 2 3 3 4 5 ...
so this table begins 1 1 1 2 1 2 6 1 2 2 6 24 ...
PROG
(SageMath)
def A178803_row(n):
return [factorial(len(p)) for k in (0..n) for p in Partitions(n, length=k)]
for n in (0..10): print(A178803_row(n)) # Peter Luschny, Nov 02 2019
(PARI)
Row(n)=[(#p)! | p<-partitions(n)]
{ for(n=0, 7, print(Row(n))) } \\ Andrew Howroyd, Oct 03 2025
CROSSREFS
KEYWORD
easy,nonn,tabf
AUTHOR
Alford Arnold, Jun 17 2010
EXTENSIONS
a(0)=1 prepended and name edited by Andrew Howroyd, Oct 03 2025
STATUS
approved
