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!)
A348944 a(n) = (1/2) * (A003959(n)+A034448(n)), where A003959 is multiplicative with a(p^e) = (p+1)^e and A034448 (usigma) is multiplicative with a(p^e) = (p^e)+1. 5
1, 3, 4, 7, 6, 12, 8, 18, 13, 18, 12, 28, 14, 24, 24, 49, 18, 39, 20, 42, 32, 36, 24, 72, 31, 42, 46, 56, 30, 72, 32, 138, 48, 54, 48, 97, 38, 60, 56, 108, 42, 96, 44, 84, 78, 72, 48, 196, 57, 93, 72, 98, 54, 138, 72, 144, 80, 90, 60, 168, 62, 96, 104, 397, 84, 144, 68, 126, 96, 144, 72, 261, 74, 114, 124, 140, 96 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
This is not multiplicative. The first point where a(m*n) = a(m)*a(n) does not hold for coprime m and n is 36 = 2^2 * 3^2, where a(36) = 97 != 91 = 7*13 = a(4)*a(9).
LINKS
MATHEMATICA
f1[p_, e_] := (p + 1)^e; f2[p_, e_] := p^e + 1; a[1] = 1; a[n_] := (Times @@ f1 @@@ (f = FactorInteger[n]) + Times @@ f2 @@@ f) / 2; Array[a, 100] (* Amiram Eldar, Nov 05 2021 *)
PROG
(PARI)
A003959(n) = { my(f = factor(n)); for(i=1, #f~, f[i, 1]++); factorback(f); };
A034448(n) = { my(f = factor(n)); prod(k=1, #f~, 1+(f[k, 1]^f[k, 2])); }; \\ After code in A034448
A348944(n) = ((1/2)*(A003959(n)+A034448(n)));
CROSSREFS
Arithmetic mean of A003959 and A034448.
Cf. also A325973.
Sequence in context: A090128 A086293 A337708 * A369761 A003981 A360674
KEYWORD
nonn
AUTHOR
Antti Karttunen, Nov 05 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 June 5 10:02 EDT 2024. Contains 373105 sequences. (Running on oeis4.)