This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A336306 #9 Jul 27 2023 16:53:32 %S A336306 1,1,1,35,5392,35462624,15419509448256,445352317449860352384, %T A336306 1733058447330128629281872412672, %U A336306 1124641798042952855847954946807366969982976,155064212713307814902013200520441969883490549760000000000 %N A336306 a(n) = (n!)^n * [x^n] Product_{n>=1} (1 + x^k/k^n). %H A336306 Alois P. Heinz, <a href="/A336306/b336306.txt">Table of n, a(n) for n = 0..31</a> %p A336306 b:= proc(n, i, k) option remember; `if`(i*(i+1)/2<n, 0, `if`(n=0, 1, %p A336306 b(n, i-1, k)+b(n-i, min(n-i, i-1), k)*((i-1)!*binomial(n, i))^k)) %p A336306 end: %p A336306 a:= n-> b(n$3): %p A336306 seq(a(n), n=0..12); # _Alois P. Heinz_, Jul 27 2023 %t A336306 Table[(n!)^n SeriesCoefficient[Product[(1 + x^k/k^n), {k, 1, n}], {x, 0, n}], {n, 0, 10}] %Y A336306 Cf. A007838, A326864, A326865, A336294, A336295. %K A336306 nonn %O A336306 0,4 %A A336306 _Ilya Gutkovskiy_, Jul 17 2020