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.

A353926 Product_{n>=1} (1 + a(n)*x^n) = 1 + Sum_{n>=1} mu(n)*x^n, where mu = A008683.

Original entry on oeis.org

1, -1, 0, 0, -1, 2, -4, 5, -7, 9, -10, 10, -5, 4, 19, -29, 70, -84, 138, -121, 174, -38, -70, 364, -797, 1423, -2048, 3001, -3479, 3324, -2080, -703, 7923, -15258, 32218, -46063, 68683, -73394, 82847, -45206, -24942, 191996, -422887, 780535, -1225608, 1713171, -2093347
Offset: 1

Views

Author

Ilya Gutkovskiy, May 11 2022

Keywords

Crossrefs

Programs

  • Mathematica
    A[m_, n_] := A[m, n] = Which[m == 1, MoebiusMu[n], m > n >= 1, 0, True, A[m - 1, n] - A[m - 1, m - 1] A[m, n - m + 1]]; a[n_] := A[n, n]; a /@ Range[1, 47]