cp's OEIS Frontend

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.

A336969 a(n) = n! * [x^n] 1 / (exp(n*x) - x).

This page as a plain text file.
%I A336969 #4 Aug 10 2020 00:20:48
%S A336969 1,0,-2,33,-424,495,342864,-22382913,915074432,-913039857,
%T A336969 -5455432211200,812138028148623,-75257247474017280,
%U A336969 1984517460320303415,1155562494647499610112,-361521639388178369672625,67461150715150454861692928,-6658374003334822571921759457
%N A336969 a(n) = n! * [x^n] 1 / (exp(n*x) - x).
%F A336969 a(n) = n! * Sum_{k=0..n} (-n * (n-k+1))^k / k!.
%t A336969 Table[n! SeriesCoefficient[1/(Exp[n x] - x), {x, 0, n}], {n, 0, 17}]
%t A336969 Join[{1}, Table[n! Sum[(-n (n - k + 1))^k/k!, {k, 0, n}], {n, 1, 17}]]
%Y A336969 Cf. A089148, A134095, A302398, A336949, A336958.
%K A336969 sign
%O A336969 0,3
%A A336969 _Ilya Gutkovskiy_, Aug 09 2020