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.

A348468 Expansion of e.g.f. sqrt(exp(x)*(2-exp(x))).

Original entry on oeis.org

1, 0, -1, -3, -10, -45, -271, -2058, -18775, -199335, -2410516, -32683563, -490870315, -8087188200, -144994236661, -2810079139143, -58536519252130, -1304198088413265, -30946462816602331, -779104979758256298, -20742005411397108595, -582214473250983046155, -17184302765073000634276
Offset: 0

Views

Author

Michel Marcus, Oct 19 2021

Keywords

Crossrefs

Programs

  • Mathematica
    m = 22; Range[0, m]! * CoefficientList[Series[Sqrt[Exp[x]*(2 - Exp[x])], {x, 0, m}], x] (* Amiram Eldar, Oct 19 2021 *)
  • PARI
    my(x='x+O('x^25)); Vec(serlaplace(sqrt(exp(x)*(2-exp(x)))))

Formula

a(n) ~ -sqrt(2) * n^(n-1) / (log(2)^(n - 1/2) * exp(n)). - Vaclav Kotesovec, Oct 21 2021