OFFSET
0,3
REFERENCES
N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
LINKS
Seiichi Manyama, Table of n, a(n) for n = 0..451
FORMULA
a(n) = sum(k=1..n, sum(i=0..n-k, binomial(n,i)*k^i*Stirling1(n-i,k))), n>0, a(0)=1. - Vladimir Kruchinin, Jun 01 2011
|a(n)| ~ n!/(Gamma(-exp(-1))*n^(1+exp(-1))). - Vaclav Kotesovec, Jun 27 2013
MATHEMATICA
With[{nn=25}, CoefficientList[Series[(1+x)^Exp[x], {x, 0, nn}], x] Range[ 0, nn]!] (* Harvey P. Dale, Sep 21 2011 *)
PROG
(Maxima)
a(n):=sum(sum(binomial(n, i)*k^i*stirling1(n-i, k), i, 0, n-k), k, 1, n); /* Vladimir Kruchinin, Jun 01 2011 */
CROSSREFS
KEYWORD
sign,easy
AUTHOR
EXTENSIONS
Definition and terms corrected, and more terms added by Joerg Arndt, Jun 01 2011
STATUS
approved