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

A277464
Expansion of e.g.f. cosh(x)/(1 + LambertW(-x)).
6
1, 1, 5, 30, 281, 3400, 50557, 890120, 18101617, 417464064, 10764826421, 306893014912, 9584448407305, 325407839778944, 11933432488693549, 470087171351873280, 19796492491889197025, 887518214183286390784, 42202928616264032249701, 2121583256369642798845952
OFFSET
0,3
LINKS
FORMULA
a(n) ~ cosh(exp(-1)) * n^n.
a(n) = Sum_{k=0..floor(n/2)} (n-2*k)^(n-2*k) * binomial(n,2*k). - Seiichi Manyama, Feb 15 2023
MATHEMATICA
CoefficientList[Series[Cosh[x]/(1+LambertW[-x]), {x, 0, 25}], x] * Range[0, 25]!
Table[(1+(-1)^n + Sum[(1+(-1)^(n-k)) * Binomial[n, k] * k^k, {k, 1, n}])/2, {n, 0, 25}]
PROG
(PARI) x='x+O('x^50); Vec(serlaplace(cosh(x)/(1 + lambertw(-x)))) \\ G. C. Greubel, Nov 07 2017
(PARI) a(n) = sum(k=0, n\2, (n-2*k)^(n-2*k)*binomial(n, 2*k)); \\ Seiichi Manyama, Feb 15 2023
CROSSREFS
KEYWORD
nonn
AUTHOR
Vaclav Kotesovec, Oct 16 2016
STATUS
approved