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.

A334315 E.g.f. A(x) satisfies: A(x) = x - Sum_{k>=2} p(k) * A(x)^k / k!, where p = A000041 (partition numbers).

Original entry on oeis.org

1, -2, 9, -65, 653, -8432, 133188, -2488450, 53683569, -1313214351, 35916970957, -1086055854233, 35975402985863, -1295514629022924, 50391598721116365, -2105485003413499952, 94047072252968125326, -4472183077495496587696, 225565085807090517308839
Offset: 1

Views

Author

Ilya Gutkovskiy, Apr 22 2020

Keywords

Comments

Exponential reversion of A000041 (partition numbers).

Crossrefs

Programs

  • Mathematica
    nmax = 19; CoefficientList[InverseSeries[Series[Sum[PartitionsP[k] x^k/k!, {k, 1, nmax}], {x, 0, nmax}], x], x] Range[0, nmax]! // Rest