The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A369453 Dirichlet inverse of A038548, where A038548 is the number of divisors of n that are at most sqrt(n). 1
1, -1, -1, -1, -1, 0, -1, 1, -1, 0, -1, 2, -1, 0, 0, 0, -1, 2, -1, 2, 0, 0, -1, 0, -1, 0, 1, 2, -1, 2, -1, 0, 0, 0, 0, 1, -1, 0, 0, 0, -1, 2, -1, 2, 2, 0, -1, -1, -1, 2, 0, 2, -1, 0, 0, 0, 0, 0, -1, 0, -1, 0, 2, 0, 0, 2, -1, 2, 0, 2, -1, -3, -1, 0, 2, 2, 0, 2, -1, -1, 0, 0, -1, 0, 0, 0, 0, 0, -1, 0, 0, 2, 0, 0, 0, 0, -1, 2, 2 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,12
LINKS
FORMULA
a(1) = 1, and for n > 1, a(n) = -Sum_{d|n, d<n} A038548(n/d) * a(d).
Dirichlet g.f.: 2/(zeta(s)^2 + zeta(2*s)).
PROG
(PARI)
A038548(n) = if( n<1, 0, sumdiv(n, d, d*d <= n))
memoA369453 = Map();
A369453(n) = if(1==n, 1, my(v); if(mapisdefined(memoA369453, n, &v), v, v = -sumdiv(n, d, if(d<n, A038548(n/d)*A369453(d), 0)); mapput(memoA369453, n, v); (v)));
CROSSREFS
Cf. A038548.
Cf. also A359763, A369454.
Sequence in context: A350847 A026821 A039964 * A340655 A035172 A344858
KEYWORD
sign
AUTHOR
Antti Karttunen, Jan 27 2024
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 13 14:28 EDT 2024. Contains 372519 sequences. (Running on oeis4.)