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!)
A346118 a(1) = 1; a(n+1) = 1 + Sum_{d|n} mu(n/d) * a(d). 0
1, 2, 2, 2, 1, 1, -1, -1, -2, -3, -4, -4, -4, -4, -3, -4, -2, -2, 2, 2, 6, 7, 11, 11, 19, 19, 23, 26, 31, 31, 41, 41, 46, 50, 52, 54, 62, 62, 60, 64, 66, 66, 66, 66, 60, 68, 57, 57, 50, 52, 38, 40, 22, 22, 0, 5, -17, -19, -50, -50, -80, -80, -121, -122, -162, -157, -211, -211, -260, -271 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
G.f. A(x) satisfies: A(x) = x * (1 / (1 - x) + Sum_{k>=1} mu(k) * A(x^k)).
MATHEMATICA
a[1] = 1; a[n_] := a[n] = 1 + Sum[MoebiusMu[(n - 1)/d] a[d], {d, Divisors[n - 1]}]; Table[a[n], {n, 1, 70}]
nmax = 70; A[_] = 0; Do[A[x_] = x (1/(1 - x) + Sum[MoebiusMu[k] A[x^k], {k, 1, nmax}]) + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x] // Rest
CROSSREFS
Sequence in context: A029432 A073426 A232439 * A309797 A199840 A126067
KEYWORD
sign
AUTHOR
Ilya Gutkovskiy, Jul 05 2021
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 May 6 11:04 EDT 2024. Contains 372293 sequences. (Running on oeis4.)