[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”).

A307076
Expansion of 1/(1 - Sum_{k>=1} lambda(k)*x^k), where lambda() is the Liouville function (A008836).
2
1, 1, 0, -2, -2, 0, 4, 4, -2, -10, -6, 10, 22, 4, -34, -46, 16, 102, 86, -100, -272, -126, 370, 650, 60, -1138, -1384, 526, 3142, 2532, -2936, -7952, -3440, 10802, 18426, 596, -33344, -38418, 18716, 91934, 68400, -93402, -230962, -86236, 330144, 528880, -17298, -996040
OFFSET
0,4
COMMENTS
Invert transform of A008836.
FORMULA
a(0) = 1; a(n) = Sum_{k=1..n} A008836(k)*a(n-k).
MATHEMATICA
nmax = 47; CoefficientList[Series[1/(1 - Sum[LiouvilleLambda[k] x^k, {k, 1, nmax}]), {x, 0, nmax}], x]
a[0] = 1; a[n_] := a[n] = Sum[LiouvilleLambda[k] a[n - k], {k, 1, n}]; Table[a[n], {n, 0, 47}]
CROSSREFS
KEYWORD
sign
AUTHOR
Ilya Gutkovskiy, Mar 22 2019
STATUS
approved