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!)
A349910 a(n) = Sum_{d|n, d<n} A048673(d). 2
0, 1, 1, 3, 1, 6, 1, 8, 4, 7, 1, 19, 1, 9, 8, 22, 1, 27, 1, 23, 10, 10, 1, 56, 5, 12, 17, 31, 1, 47, 1, 63, 11, 13, 11, 93, 1, 15, 13, 69, 1, 65, 1, 35, 39, 18, 1, 165, 7, 43, 14, 43, 1, 128, 12, 95, 16, 19, 1, 160, 1, 22, 51, 185, 14, 74, 1, 47, 19, 80, 1, 288, 1, 24, 51, 55, 14, 92, 1, 205, 80, 25, 1, 226, 15, 27 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,4
LINKS
FORMULA
a(n) = A336840(n) - A048673(n).
MATHEMATICA
f[p_, e_] := NextPrime[p]^e; s[1] = 1; s[n_] := (1 + Times @@ f @@@ FactorInteger[n])/2; a[n_] := DivisorSum[n, s[#] &, # < n &]; Array[a, 100] (* Amiram Eldar, Dec 12 2021 *)
PROG
(PARI)
A048673(n) = { my(f = factor(n)); for(i=1, #f~, f[i, 1] = nextprime(f[i, 1]+1)); (factorback(f)+1)/2; };
A349910(n) = sumdiv(n, d, if(d==n, 0, A048673(d)));
CROSSREFS
Sequence in context: A336646 A336647 A336645 * A168111 A309491 A109646
KEYWORD
nonn
AUTHOR
Antti Karttunen, Dec 10 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 September 8 01:34 EDT 2024. Contains 375749 sequences. (Running on oeis4.)