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!)
A356812 Expansion of e.g.f. exp(x * (1 - exp(2*x))). 5
1, 0, -4, -12, 16, 400, 2208, -448, -131840, -1357056, -4820480, 71120896, 1537308672, 14006460416, 3075702784, -2224350781440, -41354996154368, -359660395495424, 1675436608585728, 121894823709900800, 2317859245604208640, 20543311167964053504 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
G.f.: Sum_{k>=0} (-x)^k / (1 - (2*k+1)*x)^(k+1).
a(n) = Sum_{k=0..n} (-1)^k * (2*k+1)^(n-k) * binomial(n,k).
a(n) = n! * Sum_{k=0..floor(n/2)} (-1)^k * 2^(n-k) * Stirling2(n-k,k)/(n-k)!.
MATHEMATICA
With[{nn=30}, CoefficientList[Series[Exp[x(1-Exp[2x])], {x, 0, nn}], x] Range[0, nn]!] (* Harvey P. Dale, Oct 04 2023 *)
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(exp(x*(1-exp(2*x)))))
(PARI) my(N=30, x='x+O('x^N)); Vec(sum(k=0, N, (-x)^k/(1-(2*k+1)*x)^(k+1)))
(PARI) a(n) = sum(k=0, n, (-1)^k*(2*k+1)^(n-k)*binomial(n, k));
(PARI) a(n) = n!*sum(k=0, n\2, (-1)^k*2^(n-k)*stirling(n-k, k, 2)/(n-k)!);
CROSSREFS
Sequence in context: A370191 A048661 A036047 * A045042 A367930 A095099
KEYWORD
sign
AUTHOR
Seiichi Manyama, Aug 29 2022
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 April 24 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)