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”).

A351735
Expansion of e.g.f. 1/(1 - 3 * x)^x.
3
1, 0, 6, 27, 324, 4050, 64962, 1224720, 26776656, 665390376, 18529576200, 571602980520, 19349098690248, 713092338026640, 28422424039182768, 1218246132898693080, 55876497505161154560, 2730710993688989519040, 141654212475516155694528
OFFSET
0,3
FORMULA
a(n) = n! * Sum_{k=0..floor(n/2)} 3^(n-k) * |Stirling1(n-k,k)|/(n-k)!.
PROG
(PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(1/(1-3*x)^x))
(PARI) a(n) = n!*sum(k=0, n\2, 3^(n-k)*abs(stirling(n-k, k, 1))/(n-k)!);
CROSSREFS
Sequence in context: A290802 A360754 A367886 * A322233 A164985 A367884
KEYWORD
nonn
AUTHOR
Seiichi Manyama, May 20 2022
STATUS
approved