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”).

A327034
Expansion of e.g.f. exp(x) / (2 - cosh(x)).
3
1, 1, 2, 4, 14, 46, 242, 1114, 7814, 46246, 405482, 2933074, 30860414, 263817646, 3238391522, 31943268634, 448122565814, 5009616448246, 79063212894362, 987840438629794, 17322647732052014, 239217148602642046, 4614370558369770002, 69790939492563608554
OFFSET
0,3
FORMULA
a(0) = 1; a(n) = Sum_{k=1..n} (-1)^k * binomial(n,k) * (2^(k - 1) - 2) * a(n-k).
a(n) ~ n! * (7 + 4*sqrt(3) + (-1)^n) / ((3+2*sqrt(3)) * (log(2+sqrt(3)))^(n+1)). - Vaclav Kotesovec, Dec 03 2019
MATHEMATICA
nmax = 23; CoefficientList[Series[Exp[x]/(2 - Cosh[x]), {x, 0, nmax}], x] Range[0, nmax]!
CROSSREFS
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Nov 28 2019
STATUS
approved