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!)
A349350 Dirichlet inverse of A057521, the powerful part of n. 3
1, -1, -1, -3, -1, 1, -1, -1, -8, 1, -1, 3, -1, 1, 1, 5, -1, 8, -1, 3, 1, 1, -1, 1, -24, 1, -10, 3, -1, -1, -1, 7, 1, 1, 1, 24, -1, 1, 1, 1, -1, -1, -1, 3, 8, 1, -1, -5, -48, 24, 1, 3, -1, 10, 1, 1, 1, 1, -1, -3, -1, 1, 8, -3, 1, -1, -1, 3, 1, -1, -1, 8, -1, 1, 24, 3, 1, -1, -1, -5, 28, 1, -1, -3, 1, 1, 1, 1, -1, -8 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,4
COMMENTS
Multiplicative because A057521 is.
LINKS
FORMULA
a(1) = 1; a(n) = -Sum_{d|n, d < n} A057521(n/d) * a(d).
Let p be a prime, B = 1 + p - 2*p^2 and C = sqrt(1 + 2*p - 3*p^2). Then the sequence is multiplicative with a(p^e) = ((B-C)*(p-1+C)^(e-1) - (B+C)*(p-1-C)^(e-1))/(2^e*C). - Sebastian Karlsson, Dec 02 2021
MATHEMATICA
f[p_, e_] := Module[{B = 1 + p - 2*p^2, C = Sqrt[1 + 2*p - 3*p^2]}, FullSimplify[((B - C)*(p - 1 + C)^(e - 1) - (B + C)*(p - 1 - C)^(e - 1))/(2^e*C)]]; a[1] = 1; a[n_] := Times @@ f @@@ FactorInteger[n]; Array[a, 100] (* Amiram Eldar, Dec 24 2023 *)
PROG
(PARI)
A057521(n) = { my(f=factor(n)); prod(i=1, #f~, if(f[i, 2]>1, f[i, 1]^f[i, 2], 1)); }; \\ From A057521
memoA349350 = Map();
A349350(n) = if(1==n, 1, my(v); if(mapisdefined(memoA349350, n, &v), v, v = -sumdiv(n, d, if(d<n, A057521(n/d)*A349350(d), 0)); mapput(memoA349350, n, v); (v)));
CROSSREFS
Cf. A057521.
Cf. also A349340, A349442.
Sequence in context: A333901 A054724 A360440 * A061494 A360161 A141901
KEYWORD
sign,mult
AUTHOR
Antti Karttunen, Nov 18 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 April 19 09:23 EDT 2024. Contains 371782 sequences. (Running on oeis4.)