login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A333144
Irregular triangle where row n lists the product of the factorials of the exponentials of the partitions of n and the partitions are enumerated in canonical order.
2
1, 1, 1, 2, 1, 1, 6, 1, 1, 2, 2, 24, 1, 1, 1, 2, 2, 6, 120, 1, 1, 1, 2, 2, 1, 6, 6, 4, 24, 720, 1, 1, 1, 2, 1, 1, 6, 2, 2, 2, 24, 6, 12, 120, 5040, 1, 1, 1, 2, 1, 1, 6, 2, 1, 2, 2, 24, 2, 4, 2, 6, 120, 24, 12, 48, 720, 40320
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
Row sums are A161779.
Cf. A069123.
Sequence in context: A216919 A152656 A096162 * A306297 A053383 A181538
KEYWORD
nonn,tabf
AUTHOR
Peter Luschny, Apr 10 2020
STATUS
approved