OFFSET
0,4
COMMENTS
By 'canonical order' we understand the graded reverse lexicographic order (the default order of Mathematica and SageMath).
EXAMPLE
The irregular table starts:
[0] [1]
[1] [1]
[2] [1, 2]
[3] [1, 1, 6]
[4] [1, 1, 2, 2, 24]
[5] [1, 1, 1, 2, 2, 6, 120]
[6] [1, 1, 1, 2, 2, 1, 6, 6, 4, 24, 720]
[7] [1, 1, 1, 2, 1, 1, 6, 2, 2, 2, 24, 6, 12, 120, 5040]
PROG
(SageMath)
def A333144row(n):
return [product(factorial(expo) for expo in partition.to_exp()) for partition in Partitions(n)]
for n in (0..9): print(A333144row(n))
CROSSREFS
KEYWORD
nonn,tabf
AUTHOR
Peter Luschny, Apr 10 2020
STATUS
approved