login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
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 (list; graph; refs; listen; history; text; internal format)
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}]
CROSSREFS
Sequence in context: A276485 A308295 A060943 * A332125 A308652 A002770
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Jul 16 2020
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 23:15 EDT 2024. Contains 371798 sequences. (Running on oeis4.)