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!)
A354546 Expansion of e.g.f. exp(x)^( cos(x) - sin(x) ). 1
1, 1, -1, -8, -7, 96, 385, -1210, -14943, -5912, 593361, 2409298, -22935647, -236575468, 590041257, 20313729886, 40488350401, -1659176093392, -11796304552991, 120680593857514, 1966312603184321, -4949789957167124, -288454178376442407, -849587090710029098 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
a(0) = 1; a(n) = Sum_{k=1..n} (-1)^floor(k/2) * k * binomial(n-1,k-1) * a(n-k).
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(exp(x)^(cos(x)-sin(x))))
(PARI) a_vector(n) = my(v=vector(n+1)); v[1]=1; for(i=1, n, v[i+1]=sum(j=1, i, (-1)^(j\2)*j*binomial(i-1, j-1)*v[i-j+1])); v;
CROSSREFS
Sequence in context: A237646 A288188 A038285 * A261117 A098432 A197623
KEYWORD
sign
AUTHOR
Seiichi Manyama, Aug 18 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 25 01:35 EDT 2024. Contains 371964 sequences. (Running on oeis4.)