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!)
A349103 Expansion of e.g.f. exp( (sin(x) + x*cos(x))/2 ). 3
1, 1, 1, -1, -7, -16, 19, 270, 809, -1832, -26939, -81680, 415817, 5085192, 11943199, -154023064, -1510744111, -1192784896, 80798373289, 615743987520, -1348945040647, -55570193758592, -296824726927253, 2567750854163200, 47111874571146041 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,5
LINKS
FORMULA
a(0) = 1; a(n) = Sum_{k=0..floor((n-1)/2)} (-1)^k * (k+1) * binomial(n-1,2*k) * a(n-2*k-1).
MATHEMATICA
With[{m = 24}, Range[0, m]! * CoefficientList[Series[Exp[(Sin[x] + x*Cos[x])/2], {x, 0, m}], x]] (* Amiram Eldar, Mar 26 2022 *)
PROG
(PARI) my(N=40, x='x+O('x^N)); Vec(serlaplace(exp((sin(x)+x*cos(x))/2)))
(PARI) a(n) = if(n==0, 1, sum(k=0, (n-1)\2, (-1)^k*(k+1)*binomial(n-1, 2*k)*a(n-2*k-1)));
CROSSREFS
Sequence in context: A101073 A026226 A335569 * A060914 A242917 A370921
KEYWORD
sign
AUTHOR
Seiichi Manyama, Mar 26 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 July 28 11:17 EDT 2024. Contains 374691 sequences. (Running on oeis4.)