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.

A383986 Expansion of the exponential generating function sqrt(4*exp(x) - exp(2*x) - 2) - 1.

Original entry on oeis.org

0, 1, -1, 1, -13, 61, -601, 5881, -73333, 1021861, -16334401, 290146561, -5707536253, 122821558861, -2873553719401, 72586328036041, -1969306486088773, 57106504958139061, -1762735601974347601, 57705363524117482321, -1996916624448159410893
Offset: 0

Views

Author

Michael De Vlieger, May 16 2025

Keywords

Crossrefs

Programs

  • Mathematica
    nn = 20; f[x_] := -1 + Sqrt[1 + 2 x - x^2];
    Range[0, nn]! * CoefficientList[Series[f[-(1 - Exp[x])], {x, 0, nn}], x]