The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A336306 a(n) = (n!)^n * [x^n] Product_{n>=1} (1 + x^k/k^n). 1
1, 1, 1, 35, 5392, 35462624, 15419509448256, 445352317449860352384, 1733058447330128629281872412672, 1124641798042952855847954946807366969982976, 155064212713307814902013200520441969883490549760000000000 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
MAPLE
b:= proc(n, i, k) option remember; `if`(i*(i+1)/2<n, 0, `if`(n=0, 1,
b(n, i-1, k)+b(n-i, min(n-i, i-1), 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 + x^k/k^n), {k, 1, n}], {x, 0, n}], {n, 0, 10}]
CROSSREFS
Sequence in context: A212024 A231914 A202067 * A202881 A210268 A025036
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Jul 17 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 May 17 19:53 EDT 2024. Contains 372607 sequences. (Running on oeis4.)