[go: up one dir, main page]

login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A353926
Product_{n>=1} (1 + a(n)*x^n) = 1 + Sum_{n>=1} mu(n)*x^n, where mu = A008683.
5
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,6
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]
CROSSREFS
KEYWORD
sign
AUTHOR
Ilya Gutkovskiy, May 11 2022
STATUS
approved