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.

Showing 1-1 of 1 results.

A380517 Absolute value of the minimum coefficient of (1 - x)^3 * (1 - x^2)^3 * (1 - x^3)^3 * ... * (1 - x^n)^3.

Original entry on oeis.org

1, 3, 6, 15, 24, 50, 81, 186, 305, 561, 972, 1761, 3129, 5789, 10470, 19023, 33549, 62388, 113418, 205653, 366198, 674085, 1226181, 2211462, 3953679, 7287672, 13261764, 24005627, 42998125, 79033269, 143513301, 260061408, 465444889, 855436899, 1553736558, 2813222766, 5052061560, 9250734231
Offset: 0

Views

Author

Ilya Gutkovskiy, Jan 26 2025

Keywords

Crossrefs

Programs

  • Maple
    p:= proc(n) option remember;
         `if`(n=0, 1, expand(p(n-1)*(1-x^n)^3))
        end:
    a:= n-> abs(min(coeffs(p(n)))):
    seq(a(n), n=0..37);  # Alois P. Heinz, Jan 26 2025
  • Mathematica
    Table[Min[CoefficientList[Product[(1 - x^k)^3, {k, 1, n}], x]], {n, 0, 37}] // Abs
  • PARI
    a(n) = abs(vecmin(Vec(prod(k=1, n, (1-x^k)^3)))); \\ Michel Marcus, Jan 26 2025
Showing 1-1 of 1 results.