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”).

A336295
a(n) = (n!)^n * [x^n] Product_{k>=1} 1/(1 - x^k/k^n).
2
1, 1, 5, 251, 359200, 25822962624, 141766192358448256, 83301485967496541735457536, 7013555995366382867427754604471779328, 109330254486209621988088555707809713786027354619904, 396335044092985772297627538614627390881554195217999599121962369024
OFFSET
0,3
LINKS
MAPLE
b:= proc(n, i, k) option remember; `if`(n=0, 1, `if`(i<1, 0,
b(n, i-1, k)+b(n-i, min(n-i, i), k)*((i-1)!*binomial(n, i))^k))
end:
a:= n-> b(n$3):
seq(a(n), n=0..12); # Alois P. Heinz, Jul 27 2023
MATHEMATICA
Table[(n!)^n SeriesCoefficient[Product[1/(1 - x^k/k^n), {k, 1, n}], {x, 0, n}], {n, 0, 10}]
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Jul 16 2020
STATUS
approved