A360442 E.g.f. satisfies A(x) = x * exp( -A(x) + x * exp(-A(x)) ).
0, 1, 0, -6, 36, -20, -2730, 38178, -93688, -7711272, 184968810, -1036880570, -66424040628, 2427958996164, -24081426198466, -1271591203182510, 66942964987695120, -1027559316530335952, -45046737788036457006, 3332345692967904801438
Offset: 0
Keywords
Links
- Seiichi Manyama, Table of n, a(n) for n = 0..399
Programs
-
PARI
a(n) = sum(k=1, n, k^(n-k)*(-n)^(k-1)*binomial(n, k));
Formula
a(n) = Sum_{k=1..n} k^(n-k) * (-n)^(k-1) * binomial(n,k).