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!)
A356816 Expansion of e.g.f. exp(-x * (exp(3*x) + 1)). 5
1, -2, -2, 1, 88, 583, 676, -35597, -519392, -3359393, 19013884, 896435395, 13640180896, 85591357135, -1527872118356, -61100053650053, -1076294742932288, -7610985095240513, 200631806070276988, 9284475508083767059, 200226297062313730816, 1940767272243466116463 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
G.f.: Sum_{k>=0} (-x)^k / (1 - (3*k-1)*x)^(k+1).
a(n) = Sum_{k=0..n} (-1)^k * (3*k-1)^(n-k) * binomial(n,k).
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(exp(-x*(exp(3*x)+1))))
(PARI) my(N=30, x='x+O('x^N)); Vec(sum(k=0, N, (-x)^k/(1-(3*k-1)*x)^(k+1)))
(PARI) a(n) = sum(k=0, n, (-1)^k*(3*k-1)^(n-k)*binomial(n, k));
CROSSREFS
Sequence in context: A091752 A078078 A006831 * A016414 A049337 A049801
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 19 09:23 EDT 2024. Contains 371782 sequences. (Running on oeis4.)