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!)
A356815 Expansion of e.g.f. exp(-x * (exp(2*x) + 1)). 5
1, -2, 0, 4, 32, 48, -608, -6400, -24064, 163072, 3567104, 28394496, 6535168, -3250745344, -50725740544, -344530853888, 2476610551808, 110057610608640, 1655672654135296, 9616664975114240, -195178079811272704, -6998474114188967936, -110894925369151848448 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
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).
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(exp(-x*(exp(2*x)+1))))
(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));
CROSSREFS
Sequence in context: A245695 A374286 A069025 * A352554 A352563 A145962
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 August 22 23:25 EDT 2024. Contains 375369 sequences. (Running on oeis4.)