cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A277464 Expansion of e.g.f. cosh(x)/(1 + LambertW(-x)).

Original entry on oeis.org

1, 1, 5, 30, 281, 3400, 50557, 890120, 18101617, 417464064, 10764826421, 306893014912, 9584448407305, 325407839778944, 11933432488693549, 470087171351873280, 19796492491889197025, 887518214183286390784, 42202928616264032249701, 2121583256369642798845952
Offset: 0

Views

Author

Vaclav Kotesovec, Oct 16 2016

Keywords

Crossrefs

Programs

  • 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}]
  • 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

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