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!)
A352646 Expansion of e.g.f. 1/(1 - 2 * x * cos(x)). 2
1, 2, 8, 42, 288, 2410, 24000, 277186, 3648512, 53936082, 885150720, 15970846298, 314273439744, 6698574264122, 153746319720448, 3780677636321010, 99163499845386240, 2763481838977368994, 81542013760903053312, 2539717324111483027594 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(0) = 1; a(n) = 2 * Sum_{k=0..floor((n-1)/2)} (-1)^k * (2*k+1) * binomial(n,2*k+1) * a(n-2*k-1).
a(n) ~ n! / ((1 - r * sqrt(4*r^2 - 1)) * r^n), where r = A196603 = 0.6100312844641759753709630735134103246737209791121692378637516075328... is the root of the equation 2*r*cos(r) = 1. - Vaclav Kotesovec, Mar 27 2022
MATHEMATICA
With[{m = 19}, Range[0, m]! * CoefficientList[Series[1/(1 - 2*x*Cos[x]), {x, 0, m}], x]] (* Amiram Eldar, Mar 26 2022 *)
PROG
(PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(1/(1-2*x*cos(x))))
(PARI) a(n) = if(n==0, 1, 2*sum(k=0, (n-1)\2, (-1)^k*(2*k+1)*binomial(n, 2*k+1)*a(n-2*k-1)));
CROSSREFS
Sequence in context: A078592 A225108 A052646 * A320343 A002856 A093461
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Mar 25 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 May 5 07:59 EDT 2024. Contains 372257 sequences. (Running on oeis4.)