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.

A277474 E.g.f.: -exp(-x)*LambertW(-x).

This page as a plain text file.
%I A277474 #10 Nov 08 2017 02:29:33
%S A277474 0,1,0,6,36,380,4830,74382,1342712,27825912,651274650,16994464850,
%T A277474 489240628932,15404364096420,526634857318934,19428038813967630,
%U A277474 769280055136105200,32543192449030871792,1464827827285673677746,69903432558329996409642,3525344776953738276010940
%N A277474 E.g.f.: -exp(-x)*LambertW(-x).
%H A277474 G. C. Greubel, <a href="/A277474/b277474.txt">Table of n, a(n) for n = 0..385</a>
%F A277474 a(n) = Sum_{k=1..n} (-1)^(n-k) * binomial(n,k) * k^(k-1).
%F A277474 a(n) ~ exp(-exp(-1)) * n^(n-1).
%t A277474 CoefficientList[Series[-Exp[-x]*LambertW[-x], {x, 0, 20}], x] * Range[0, 20]!
%t A277474 Table[Sum[(-1)^(n-k)*Binomial[n, k]*k^(k-1), {k, 1, n}], {n, 0, 20}]
%o A277474 (PARI) x='x+O('x^50); concat([0], Vec(serlaplace(-exp(-x)*lambertw(-x)))) \\ _G. C. Greubel_, Nov 07 2017
%Y A277474 Cf. A000169, A069856, A086331, A277473.
%K A277474 nonn
%O A277474 0,4
%A A277474 _Vaclav Kotesovec_, Oct 17 2016