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.

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

Original entry on oeis.org

1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 3, 3, 4, 6, 8, 12, 18, 30, 46, 70, 113, 186, 314, 531, 894, 1561, 2705, 4817, 8502, 15030, 26502, 47200, 84698, 151809, 273961, 496807, 900596, 1643185, 2999067, 5498916, 10110030, 18596096, 34300223, 63585519, 118208807, 219235308, 405259618, 752027569, 1400505025
Offset: 0

Views

Author

Ilya Gutkovskiy, Jan 07 2025

Keywords

Crossrefs

Programs

  • Maple
    P:= 1: R:= 1:
    for i from 1 to 100 do
      P:= P * (1 - x^ithprime(i));
      R:= R, abs(min(coeffs(expand(P),x)))
    od:
    R; # Robert Israel, Feb 07 2025
  • Mathematica
    Table[Min[CoefficientList[Product[(1 - x^Prime[k]), {k, 1, n}], x]], {n, 0, 50}] // Abs
  • PARI
    a(n) = abs(vecmin(Vec(prod(k=1, n, 1-x^prime(k))))); \\ Michel Marcus, Jan 18 2025
Showing 1-1 of 1 results.