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.

A320257 a(n) = [x^n] 1/(1 + Sum_{k>=1} k^n*x^k).

Original entry on oeis.org

1, -1, -3, -12, 115, 10801, 513128, -31622305, -29139002795, -10674262825020, 8501486817673047, 49739414341982655313, 119603027548636893292304, -1457935338988787721752835601, -53309412371631686621966575526695, -722987647385617983636099803915844108
Offset: 0

Views

Author

Ilya Gutkovskiy, Oct 08 2018

Keywords

Crossrefs

Programs

  • Mathematica
    Table[SeriesCoefficient[1/(1 + Sum[k^n x^k, {k, 1, n}]), {x, 0, n}], {n, 0, 15}]
    Table[SeriesCoefficient[1/(1 + PolyLog[-n, x]), {x, 0, n}], {n, 0, 15}]

Formula

a(n) = [x^n] 1/(1 + PolyLog(-n,x)), where PolyLog() is the polylogarithm function.