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!)
A355694 Dirichlet inverse of A277791, denominator of sum of reciprocals of proper divisors of n. 2
1, -1, -1, -1, -1, -4, -1, -1, -2, -8, -1, 9, -1, -12, -13, -1, -1, 6, -1, 1, -19, -20, -1, -10, -4, -24, -4, 1, -1, 26, -1, -1, -31, -32, -33, 27, -1, -36, -37, 10, -1, 34, -1, 1, -12, -44, -1, 35, -6, 2, -49, 1, -1, -14, -53, 62, -55, -56, -1, 87, -1, -60, -18, -1, -63, 110, -1, 1, -67, 42, -1, -57, -1, -72, 12 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,6
LINKS
FORMULA
a(1) = 1, and for n > 1, a(n) = -Sum_{d|n, d<n} A277791(n/d) * a(d).
PROG
(PARI)
A277791(n) = denominator((sigma(n)-1)/n); \\ From A277791
memoA355694 = Map();
A355694(n) = if(1==n, 1, my(v); if(mapisdefined(memoA355694, n, &v), v, v = -sumdiv(n, d, if(d<n, A277791(n/d)*A355694(d), 0)); mapput(memoA355694, n, v); (v)));
CROSSREFS
Cf. A277791.
Sequence in context: A333989 A016527 A010325 * A265273 A341932 A293770
KEYWORD
sign
AUTHOR
Antti Karttunen, Jul 18 2022
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 15 06:57 EDT 2024. Contains 372538 sequences. (Running on oeis4.)