OFFSET
0,5
LINKS
Peter Luschny, Illustrating the polynomials.
EXAMPLE
Tracing the computation:
0: [1] * [1] = [1]
1: [1] * [0, 1] = [0, 1]
2: [1] * [0, 2, 1] = [0, 2, 1]
3: [1, 1] * [0, 6, 6, 1] = [0, 6, 12, 7, 1]
4: [1, 3, 1] * [0, 24, 36, 12, 1] = [0, 24, 108, 144, 73, 15, 1]
MAPLE
# Using function EZP from A373432.
EZP((n, k) -> ifelse(n=k, 1, binomial(n-1, k-1)*n!/k!), 7);
CROSSREFS
KEYWORD
nonn,tabf
AUTHOR
Peter Luschny, Jun 07 2024
STATUS
approved