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!)
A352252 Expansion of e.g.f. 1 / (1 - x * cos(x)). 8
1, 1, 2, 3, 0, -55, -480, -3157, -15232, -16623, 898560, 16316179, 194574336, 1666248025, 5418649600, -170157839685, -5164467978240, -92955464490463, -1188910801354752, -7329026447550685, 157257042777866240, 7516793832172469481, 187200588993188069376 (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 * binomial(n,2*k+1) * (2*k+1) * a(n-2*k-1).
MATHEMATICA
nmax = 22; CoefficientList[Series[1/(1 - x Cos[x]), {x, 0, nmax}], x] Range[0, nmax]!
a[0] = 1; a[n_] := a[n] = Sum[(-1)^k Binomial[n, 2 k + 1] (2 k + 1) a[n - 2 k - 1], {k, 0, Floor[(n - 1)/2]}]; Table[a[n], {n, 0, 22}]
PROG
(PARI) my(x='x+O('x^30)); Vec(serlaplace(1 / (1 - x * cos(x)))) \\ Michel Marcus, Mar 10 2022
CROSSREFS
Sequence in context: A002634 A319173 A295945 * A345752 A070078 A054438
KEYWORD
sign
AUTHOR
Ilya Gutkovskiy, Mar 09 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 24 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)