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.

A336950 E.g.f.: 1 / (1 - x * exp(2*x)).

Original entry on oeis.org

1, 1, 6, 42, 392, 4600, 64752, 1063216, 19952256, 421227648, 9880951040, 254960721664, 7176891675648, 218857588139008, 7187394935347200, 252897556424140800, 9491754142468702208, 378509920569294684160, 15982018774576565649408, 712306819507400060502016
Offset: 0

Views

Author

Ilya Gutkovskiy, Aug 08 2020

Keywords

Crossrefs

Programs

  • Mathematica
    nmax = 19; CoefficientList[Series[1/(1 - x Exp[2 x]), {x, 0, nmax}], x] Range[0, nmax]!
    Join[{1}, Table[n! Sum[(2 (n - k))^k/k!, {k, 0, n}], {n, 1, 19}]]
    a[0] = 1; a[n_] := a[n] = Sum[Binomial[n, k] k 2^(k - 1) a[n - k], {k, 1, n}]; Table[a[n], {n, 0, 19}]
  • PARI
    seq(n)={ Vec(serlaplace(1 / (1 - x*exp(2*x + O(x^n))))) } \\ Andrew Howroyd, Aug 08 2020

Formula

a(n) = n! * Sum_{k=0..n} (2 * (n-k))^k / k!.
a(0) = 1; a(n) = Sum_{k=1..n} binomial(n,k) * k * 2^(k-1) * a(n-k).
a(n) ~ n! * (2/LambertW(2))^n / (1 + LambertW(2)). - Vaclav Kotesovec, Aug 09 2021