login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A189424 Expansion of e.g.f exp(log(1+x)+2*log(1+x)^2). 1
1, 1, 4, 0, 44, -220, 2056, -19544, 213216, -2571552, 34036224, -489916416, 7614555648, -127028029440, 2262903109632, -42857715985920, 859647858427392, -18200106158320128, 405498290896693248, -9482120962982547456, 232156555727228971008 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
Vladimir Kruchinin and D. V. Kruchinin, Composita and their properties, arXiv:1103.2582 [math.CO], 2011-2013.
FORMULA
a(n) = Sum_{m=1..n} (Sum_{k=m..n} (k!*binomial(m,k-m)*2^(k-m)*Stirling1(n,k))/m!), n > 0, a(0) = 1.
MAPLE
S:= series(exp(log(1+x)+2*log(1+x)^2), x, 31):
seq(coeff(S, x, j)*j!, j=0..30); # Robert Israel, Jan 30 2018
MATHEMATICA
With[{nn=20}, CoefficientList[Series[Exp[Log[1+x]+2Log[1+x]^2], {x, 0, nn}], x] Range[0, nn]!] (* Harvey P. Dale, Dec 27 2014 *)
PROG
(Maxima)
a(n):=sum(sum(k!*binomial(m, k-m)*2^(k-m)*stirling1(n, k), k, m, n)/m!, m, 1, n);
CROSSREFS
Sequence in context: A138546 A019217 A221757 * A009371 A248952 A101502
KEYWORD
sign
AUTHOR
Vladimir Kruchinin, Apr 21 2011
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 2 21:21 EDT 2024. Contains 372203 sequences. (Running on oeis4.)