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.

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

Original entry on oeis.org

1, 1, 1, 0, 0, -1, 1, -1, 2, -2, 2, -4, 6, -8, 11, -13, 16, -23, 32, -44, 61, -80, 102, -133, 178, -243, 331, -441, 579, -759, 1001, -1335, 1792, -2398, 3186, -4205, 5537, -7320, 9734, -12975, 17266, -22893, 30267, -40004, 52968, -70282, 93348, -123900, 164179, -217277
Offset: 0

Views

Author

Seiichi Manyama, Apr 16 2019

Keywords

Crossrefs

Programs

  • Mathematica
    m = 49; CoefficientList[Series[Product[1/(1 - x^k * (1 - x)), {k, 1, m}], {x, 0, m}], x] (* Amiram Eldar, May 14 2021 *)
  • PARI
    N=66; x='x+O('x^N); Vec(1/prod(k=1, N, 1-x^k*(1-x)))

Formula

G.f.: exp(Sum_{k>=1} x^k * Sum_{d|k} (1 - x)^d/d). - Ilya Gutkovskiy, Apr 16 2019