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.

A307310 Expansion of Product_{k>=1} (1 - x^k/(1 - x)^k).

Original entry on oeis.org

1, -1, -2, -3, -4, -4, -1, 9, 34, 89, 200, 409, 779, 1394, 2339, 3624, 4974, 5323, 1682, -13279, -56222, -163136, -408768, -943275, -2059237, -4310179, -8712425, -17072901, -32486302, -60006278, -107341413, -184979170, -303998680, -467127625, -642495990, -696247140
Offset: 0

Views

Author

Ilya Gutkovskiy, Apr 02 2019

Keywords

Comments

First differences of the binomial transform of A010815.
Convolution inverse of A218482.

Crossrefs

Programs

  • Maple
    a:=series(mul((1-x^k/(1-x)^k),k=1..100),x=0,35): seq(coeff(a,x,n),n=0..34); # Paolo P. Lava, Apr 02 2019
  • Mathematica
    nmax = 35; CoefficientList[Series[Product[(1 - x^k/(1 - x)^k), {k, 1, nmax}], {x, 0, nmax}], x]