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!)
A349104 Expansion of e.g.f. 1/(1 - (sin(x) + x*cos(x))/2 ). 3
1, 1, 2, 4, 8, 3, -124, -1306, -10144, -67723, -363392, -831672, 16709824, 386800759, 5631873664, 66256305994, 619010054144, 3201069236265, -40479063835648, -1775812586063860, -39853546353553408, -694055641682352469, -9591063643658387456, -84103588142498507346 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(0) = 1; a(n) = Sum_{k=0..floor((n-1)/2)} (-1)^k * (k+1) * binomial(n,2*k+1) * a(n-2*k-1).
MATHEMATICA
With[{m = 23}, Range[0, m]! * CoefficientList[Series[1/(1 - (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(1/(1-(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, 2*k+1)*a(n-2*k-1)));
CROSSREFS
Sequence in context: A231610 A225124 A344537 * A059884 A191561 A021805
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 September 2 13:09 EDT 2024. Contains 375613 sequences. (Running on oeis4.)