login
A304819
Dirichlet convolution of r with zeta, where r(n) = (-1)^Omega(n) if n is 1 or not a perfect power and r(n) = 0 otherwise.
5
1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, -2, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, -1, 0, -1, 0, -1, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, -1, 0, 0, 0, 0, -1, 0, 0, 0, -2, 0, 0, -1, -1, 0, 0, 0, -1, 0
OFFSET
1,36
COMMENTS
Omega(n) = A001222(n) is the number of prime factors of n counted with multiplicity.
LINKS
FORMULA
a(n) = Sum_{d|n, d = 1 or not a perfect power} (-1)^Omega(d).
MATHEMATICA
Table[Sum[(-1)^PrimeOmega[d], {d, Select[Divisors[n], GCD@@FactorInteger[#][[All, 2]]==1&]}], {n, 100}]
PROG
(PARI) A304819(n) = sumdiv(n, d, if(!ispower(d), (-1)^bigomega(d), 0)); \\ Antti Karttunen, Jul 29 2018
CROSSREFS
Positions of nonzero entries appear to be A126706.
Sequence in context: A255320 A256574 A369427 * A304820 A382423 A162641
KEYWORD
sign
AUTHOR
Gus Wiseman, May 19 2018
STATUS
approved