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 A331582 #6 Jan 28 2020 04:49:13 %S A331582 1,-1,4,0,-1654,102750,-4079389,-178722208,83191059372, %T A331582 -14561829897345,1115121827539325,403631463559529040, %U A331582 -251989999508801085674,76158421344845152140737,-3994730250899559184766830,-13162858116922635098226480000,10823217968258750568539067678392 %N A331582 a(n) = n! * [x^n] exp(n - exp(x) * (exp(n*x) - 1) / (exp(x) - 1)). %H A331582 Vaclav Kotesovec, <a href="/A331582/b331582.txt">Table of n, a(n) for n = 0..200</a> %F A331582 a(n) = n! * [x^n] exp(n - exp(x) - exp(2*x) - exp(3*x) - ... - exp(n*x)). %t A331582 Table[n! SeriesCoefficient[Exp[n - Exp[x] (Exp[n x] - 1)/(Exp[x] - 1)], {x, 0, n}], {n, 0, 16}] %t A331582 b[n_, k_] := b[n, k] = If[n == 0, 1, -Sum[Binomial[n - 1, j - 1] Sum[i^j, {i, 1, k}] b[n - j, k], {j, 1, n}]]; a[n_] := b[n, n]; Table[a[n], {n, 0, 16}] %Y A331582 Cf. A103438, A319508, A319509, A320288. %K A331582 sign %O A331582 0,3 %A A331582 _Ilya Gutkovskiy_, Jan 21 2020