login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A191365
Expansion of e.g.f. (1/(1-x))^exp(x).
10
1, 1, 4, 18, 102, 695, 5485, 49077, 490308, 5404569, 65106103, 850535477, 11972432846, 180605413001, 2906109200293, 49678357272247, 898988188301320, 17167497793440977, 344991795682802331, 7277230501449340417, 160765066207998479698
OFFSET
0,3
COMMENTS
Exponential transform of A002104. - Seiichi Manyama, May 03 2022
LINKS
FORMULA
a(n) = sum(k=1..n, sum(i=0..n-k, binomial(n,i)*k^i*(-1)^(n-k-i)*Stirling1(n-i,k))), n>0, a(0)=1.
a(n) ~ n! * n^(exp(1)-1)/Gamma(exp(1)) * (1-exp(1)*(exp(1)-1)*log(n)/n). - Vaclav Kotesovec, Jun 21 2013
a(0) = 1; a(n) = Sum_{k=1..n} A002104(k) * binomial(n-1,k-1) * a(n-k). - Seiichi Manyama, May 03 2022
MATHEMATICA
CoefficientList[Series[(1/(1-x))^Exp[x], {x, 0, 20}], x]* Range[0, 20]! (* Vaclav Kotesovec, Jun 21 2013 *)
PROG
(Maxima) a(n):=sum(sum(binomial(n, i)*k^i*(-1)^(n-k-i)*stirling1(n-i, k), i, 0, n-k), k, 1, n);
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(1/(1-x)^exp(x))) \\ Seiichi Manyama, May 03 2022
CROSSREFS
Sequence in context: A350267 A064852 A229286 * A335459 A159666 A349021
KEYWORD
nonn
AUTHOR
Vladimir Kruchinin, May 31 2011
STATUS
approved