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.

A277476 E.g.f.: -sinh(x)*LambertW(-x).

Original entry on oeis.org

0, 0, 2, 6, 40, 340, 3936, 56714, 976704, 19535688, 444743680, 11349643822, 320813048832, 9947821243100, 335700998830848, 12246806941654770, 480247532548624384, 20144008859005187344, 899923326921333301248, 42658767419625168409814, 2138475182252830504796160
Offset: 0

Views

Author

Vaclav Kotesovec, Oct 17 2016

Keywords

Crossrefs

Programs

  • Mathematica
    CoefficientList[Series[-Sinh[x]*LambertW[-x], {x, 0, 20}], x] * Range[0, 20]!
    Table[Sum[(1 - (-1)^(n-k)) * Binomial[n, k] * k^(k-1)/2, {k, 1, n}], {n, 0, 20}]
  • PARI
    x='x+O('x^50); concat([0,0], Vec(serlaplace(-sinh(x)*lambertw(-x) ))) \\ G. C. Greubel, Nov 07 2017

Formula

a(n) = Sum_{k=1..n} (1 - (-1)^(n-k)) * binomial(n,k) * k^(k-1)/2.
a(n) ~ sinh(exp(-1)) * n^(n-1).