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.

A383992 Series expansion of the exponential generating function exp(arbustive(x)) - 1 where arbustive(x) = (log(1+x) - x^2) / (1+x).

Original entry on oeis.org

0, 1, -4, 3, 40, -330, 1626, -3150, -54592, 1060920, -13022280, 127171440, -889086648, -283184616, 179750627616, -4895777544840, 99124001788800, -1721513264431680, 25736021675994816, -292896125040673728, 639149345262276480, 106178474282318726400
Offset: 0

Views

Author

Michael De Vlieger, May 16 2025

Keywords

Crossrefs

Programs

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