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.

A369773 Maximal coefficient of (1 + x) * (1 + x - x^2) * ... * (1 + x - x^2 + ... - (-x)^n).

Original entry on oeis.org

1, 1, 2, 3, 4, 6, 19, 59, 233, 1189, 7046, 45326, 356517, 3108808, 30028121, 325635647, 3830546752, 49403859787, 685063715374, 10162709827329, 162776892315940, 2754021620252692, 49463507801582609, 940216720983170113, 18786988751008626812
Offset: 0

Views

Author

Ilya Gutkovskiy, Jan 31 2024

Keywords

Crossrefs

Programs

  • Mathematica
    Table[Max[CoefficientList[Product[(1 - Sum[(-x)^j, {j, 1, i}]), {i, 1, n}], x]], {n, 0, 24}]
  • Python
    from collections import Counter
    def A369773(n):
        c = {0:1}
        for k in range(1,n+1):
            d = Counter(c)
            for j in c:
                a = c[j]
                for i in range(1,k+1):
                    d[j+i] += (a if i&1 else -a)
            c = d
        return max(c.values()) # Chai Wah Wu, Feb 01 2024
Showing 1-1 of 1 results.