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!)
A329642 a(n) = Sum_{d|n} [1 == A008683(n/d)] * A323244(d), where A323244(x) gives the deficiency of A156552(x). 4
0, 1, 1, 2, 1, 4, 1, 6, 0, 5, 1, 11, 1, 16, 2, 6, 1, 13, 1, 19, -3, 18, 1, 24, -4, 46, 4, 23, 1, 13, 1, 30, 14, 82, -2, 18, 1, 256, -12, 24, 1, 39, 1, 67, 9, 226, 1, 52, -12, 20, 8, 131, 1, 28, -19, 72, -12, 748, 1, 53, 1, 1362, 17, 22, 10, 45, 1, 215, 254, 43, 1, 48, 1, 3838, 11, 407, -10, 109, 1, 84, -12, 5458, 1, 48, -72, 12250, -348, 32, 1, 18 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,4
LINKS
Antti Karttunen, Table of n, a(n) for n = 1..10000 (based on Hans Havermann's factorization of A156552)
FORMULA
a(n) = Sum_{d|n} [1 == A008683(n/d)] * (2*A156552(d) - A323243(d)).
a(n) = A329643(n) + A329644(n).
PROG
(PARI)
A156552(n) = {my(f = factor(n), p2 = 1, res = 0); for(i = 1, #f~, p = 1 << (primepi(f[i, 1]) - 1); res += (p * p2 * (2^(f[i, 2]) - 1)); p2 <<= f[i, 2]); res}; \\ From A156552
A323243(n) = if(1==n, 0, sigma(A156552(n)));
A329642(n) = sumdiv(n, d, (1==moebius(n/d))*((2*A156552(d))-A323243(d)));
CROSSREFS
Cf. A329645 (inverse Möbius transform).
Sequence in context: A308175 A241423 A323244 * A214052 A276094 A247339
KEYWORD
sign
AUTHOR
Antti Karttunen, Nov 21 2019
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 01:42 EDT 2024. Contains 374259 sequences. (Running on oeis4.)