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!)
A354545 Expansion of e.g.f. exp(x)^( cos(x) + sin(x) ). 1
1, 1, 3, 4, 9, -24, -143, -902, -1631, 5176, 109841, 664302, 1479841, -16079764, -240229975, -1395162974, 126628545, 101950486736, 1118811398113, 4468008939542, -46600859353919, -1019505781080044, -7952038289388071, 10041106628453162 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(0) = 1; a(n) = Sum_{k=1..n} (-1)^floor((k-1)/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-1)\2)*j*binomial(i-1, j-1)*v[i-j+1])); v;
CROSSREFS
Sequence in context: A034921 A038222 A038629 * A247087 A270756 A105229
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 August 12 09:35 EDT 2024. Contains 375092 sequences. (Running on oeis4.)