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

A191498
E.g.f. sqrt(1+2*x*exp(2*x)).
0
1, 1, 3, 3, -7, 25, 267, -2261, -9231, 284337, -464365, -45533741, 430558185, 8212158409, -201645489381, -1064348170245, 94082272856033, -489731454691487, -45404775138028509, 840156145287526819, 20537314081214613465, -913405900816937424519
OFFSET
0,3
FORMULA
a(n) = n!*sum(k=1..n, (k^(n-k-1)*(-1)^(k+1)*C(2*k-2,k-1)*2^(n-2*k+1))/(n-k)!), n>0, a(0)=1.
MATHEMATICA
With[{nn=20}, CoefficientList[Series[Sqrt[1+2x Exp[2x]], {x, 0, nn}], x] Range[0, nn]!] (* Harvey P. Dale, Oct 03 2011 *)
PROG
(Maxima)
a(n):= n!*sum((k^(n-k-1)*(-1)^(k+1)*binomial(2*k-2, k-1)*2^(n-2*k+1))/(n-k)!, k, 1, n);
CROSSREFS
Sequence in context: A232368 A333924 A173321 * A065747 A363398 A232309
KEYWORD
sign
AUTHOR
Vladimir Kruchinin, Jun 03 2011
STATUS
approved