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-2 of 2 results.

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

Original entry on oeis.org

1, -1, 1, 0, -1, 2, -3, 3, -2, 0, 1, -2, 2, -2, 1, -2, 3, -4, 4, -2, 0, 2, -5, 6, -5, 3, -2, 1, -1, 1, 0, 0, 3, -6, 6, -5, 4, 0, -5, 7, -7, 5, -2, 2, 0, -2, 0, 1, 5, -7, 11, -14, 11, -6, -1, 9, -12, 8, -11, 11, -6, 10, -13, 8, -2, -12, 26, -26, 24, -20, 2, 11, -8, 14, -15, 9
Offset: 0

Views

Author

Ilya Gutkovskiy, Oct 02 2022

Keywords

Crossrefs

Programs

  • Mathematica
    nmax = 75; CoefficientList[Series[Product[(1 - MoebiusMu[k] x^k), {k, 1, nmax}], {x, 0, nmax}], x]
    a[0] = 1; a[n_] := a[n] = -(1/n) Sum[Sum[d MoebiusMu[d]^(k/d), {d, Divisors[k]}] a[n - k], {k, 1, n}]; Table[a[n], {n, 0, 75}]

A357525 Expansion of Product_{k>=1} (1 + mu(k)*x^k).

Original entry on oeis.org

1, 1, -1, -2, -1, 0, 1, 1, 0, 0, 1, 0, -2, -2, 1, 4, 3, -2, -4, -2, 0, 2, 3, 0, -1, 1, 0, -3, -3, -1, 2, 4, 3, 0, -2, -1, 2, 0, -5, -3, 3, 3, 0, -2, -4, -2, 4, 5, 3, 3, 1, -4, -9, -8, 3, 11, 6, 0, -3, -7, -4, 2, -1, -2, 6, 8, -2, -10, -8, 4, 14, 11, 2, -6, -11, -5
Offset: 0

Views

Author

Ilya Gutkovskiy, Oct 02 2022

Keywords

Crossrefs

Programs

  • Mathematica
    nmax = 75; CoefficientList[Series[Product[(1 + MoebiusMu[k] x^k), {k, 1, nmax}], {x, 0, nmax}], x]
    a[0] = 1; a[n_] := a[n] = -(1/n) Sum[Sum[d (-MoebiusMu[d])^(k/d), {d, Divisors[k]}] a[n - k], {k, 1, n}]; Table[a[n], {n, 0, 75}]
Showing 1-2 of 2 results.