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!)
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 (list; graph; refs; listen; history; text; internal format)
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
Sequence in context: A199131 A342389 A344525 * A258300 A276752 A052172
KEYWORD
nonn
AUTHOR
Vaclav Kotesovec, Oct 16 2016
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 23 09:48 EDT 2024. Contains 371905 sequences. (Running on oeis4.)