login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A348587
Expansion of e.g.f. exp(x) / (2 - cos(x)).
1
1, 1, 0, -2, 2, 26, -30, -622, 982, 25846, -50910, -1639142, 3874862, 147434366, -406614390, -17851478062, 56266545142, 2799621404086, -9927225631470, -552054087163382, 2175042302117822, 133686372253841006, -579383205000618150, -39002628245713951102
OFFSET
0,4
FORMULA
a(n) = Sum_{k=0..floor(n/2)} (-1)^k * binomial(n,2*k) * A094088(k).
MATHEMATICA
nmax = 23; CoefficientList[Series[Exp[x]/(2 - Cos[x]), {x, 0, nmax}], x] Range[0, nmax]!
PROG
(PARI) my(x='x+O('x^40)); Vec(serlaplace(exp(x)/(2-cos(x)))) \\ Michel Marcus, Oct 24 2021
CROSSREFS
KEYWORD
sign
AUTHOR
Ilya Gutkovskiy, Oct 24 2021
STATUS
approved