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!)
A346479 Dirichlet inverse of A250469. 5
1, -3, -5, 0, -7, 15, -11, 6, 0, 15, -13, 12, -17, 27, 35, 0, -19, 24, -23, 42, 55, 15, -29, -66, 0, 27, 60, 54, -31, -27, -37, -12, 45, 15, 77, -144, -41, 27, 75, -102, -43, -63, -47, 132, 60, 39, -53, -24, 0, 84, 65, 144, -59, -384, 91, -162, 85, 15, -61, -558, -67, 39, 120, 0, 119, 165, -71, 222, 115, 9, -73, 168 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Not all zeros occur on squares. For example, a(1445) = a(5 * 17^2) = 0.
LINKS
FORMULA
a(1) = 1; and for n > 2, a(n) = -Sum_{d|n, d<n} a(d) * A250469(n/d).
a(n) = A346480(n) - A250469(n).
PROG
(PARI)
up_to = 16384;
DirInverseCorrect(v) = { my(u=vector(#v)); u[1] = (1/v[1]); for(n=2, #v, u[n] = (-u[1]*sumdiv(n, d, if(d<n, v[n/d]*u[d], 0)))); (u) }; \\ Compute the Dirichlet inverse of the sequence given in input vector v.
v346479 = DirInverseCorrect(vector(up_to, n, A250469(n)));
A346479(n) = v346479[n];
CROSSREFS
Cf. also A346234, A346477.
Sequence in context: A222480 A229984 A346234 * A346254 A021289 A200480
KEYWORD
sign
AUTHOR
Antti Karttunen, Jul 30 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 July 13 02:50 EDT 2024. Contains 374265 sequences. (Running on oeis4.)