[go: up one dir, main page]

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!)
A346773 a(n) = Sum_{d|n} möbius(d)^n. 1
1, 2, 0, 2, 0, 4, 0, 2, 0, 4, 0, 4, 0, 4, 0, 2, 0, 4, 0, 4, 0, 4, 0, 4, 0, 4, 0, 4, 0, 8, 0, 2, 0, 4, 0, 4, 0, 4, 0, 4, 0, 8, 0, 4, 0, 4, 0, 4, 0, 4, 0, 4, 0, 4, 0, 4, 0, 4, 0, 8, 0, 4, 0, 2, 0, 8, 0, 4, 0, 8, 0, 4, 0, 4, 0, 4, 0, 8, 0, 4, 0, 4, 0, 8, 0, 4, 0, 4, 0, 8, 0, 4, 0, 4, 0, 4, 0, 4, 0, 4, 0, 8, 0 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
G.f.: Sum_{k>=1} (mu(k)*x)^k/(1 - (mu(k)*x)^k).
a(2*n-1) = 0^(n-1) and a(2*n) = A034444(2*n) = A100008(n) for n > 0.
MATHEMATICA
Table[Sum[MoebiusMu[d]^n, {d, Divisors[n]}], {n, 103}] (* Stefano Spezia, Aug 03 2021 *)
PROG
(PARI) a(n) = sumdiv(n, d, moebius(d)^n);
(PARI) a(n) = if(n%2, 0^(n-1), 2^omega(2*n));
(PARI) N=99; x='x+O('x^N); Vec(sum(k=1, N, (moebius(k)*x)^k/(1-(moebius(k)*x)^k)))
CROSSREFS
Sequence in context: A231563 A282849 A111813 * A362208 A167156 A132952
KEYWORD
nonn,easy
AUTHOR
Seiichi Manyama, Aug 03 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 August 29 15:03 EDT 2024. Contains 375517 sequences. (Running on oeis4.)