login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A306327 Expansion of Product_{k>=1} 1/(1 - mu(k)*x^k), where mu() is the Möbius function (A008683). 5
1, 1, 0, -1, 0, 0, 1, 0, 0, -1, 2, 0, 1, -2, 2, 0, 4, -4, 1, -4, 6, -2, 8, -8, 6, -7, 13, -10, 13, -16, 17, -17, 22, -25, 29, -26, 40, -37, 40, -50, 58, -56, 69, -75, 82, -90, 108, -110, 128, -133, 158, -168, 185, -207, 229, -238, 281, -298, 328, -357, 405, -417, 477, -518, 564, -608 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,11
LINKS
FORMULA
G.f.: exp(Sum_{k>=1} Sum_{j>=1} mu(j)^k*x^(j*k)/k).
MATHEMATICA
nmax = 65; CoefficientList[Series[Product[1/(1 - MoebiusMu[k] x^k), {k, 1, nmax}], {x, 0, nmax}], x]
nmax = 65; CoefficientList[Series[Exp[Sum[Sum[MoebiusMu[j]^k x^(j k)/k, {j, 1, nmax}], {k, 1, nmax}]], {x, 0, nmax}], x]
a[n_] := a[n] = If[n == 0, 1, Sum[Sum[d MoebiusMu[d]^(k/d), {d, Divisors[k]}] a[n - k], {k, 1, n}]/n]; Table[a[n], {n, 0, 65}]
CROSSREFS
Sequence in context: A299480 A110249 A160756 * A176239 A361854 A292475
KEYWORD
sign
AUTHOR
Ilya Gutkovskiy, Feb 07 2019
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)