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 A302398 #4 Apr 07 2018 10:11:10 %S A302398 1,-1,-2,3,248,5655,62064,-3516625,-376936064,-21890186577, %T A302398 -495165203200,96687112380639,20607024735783936,2471270260977141767, %U A302398 142697263160045590528,-25986252776953159328625,-11860424645318274482077696,-2719428501410438623907546529,-372732332273232481973818294272 %N A302398 a(n) = n! * [x^n] 1/(1 + x*exp(n*x)). %F A302398 a(n) = n!*Sum_{k=0..n} (-1)^(n-k)*(n*(n-k))^k/k!. %F A302398 a(n) = Sum_{k=0..n} (-1)^k*k!*(n*k)^(n-k)*binomial(n,k). %t A302398 Table[n! SeriesCoefficient[1/(1 + x Exp[n x]), {x, 0, n}], {n, 0, 18}] %t A302398 Join[{1}, Table[n! Sum[(-1)^(n - k) (n (n - k))^k/k!, {k, 0, n}], {n, 18}]] %t A302398 Join[{1}, Table[Sum[(-1)^k k! (n k)^(n - k) Binomial[n, k], {k, 0, n}], {n, 18}]] %Y A302398 Cf. A134095, A235328, A302397. %K A302398 sign %O A302398 0,3 %A A302398 _Ilya Gutkovskiy_, Apr 07 2018