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!)
A369687 a(n) = Sum_{p|n, p prime} p^phi(n/p). 3
0, 2, 3, 2, 5, 7, 7, 4, 9, 21, 11, 13, 13, 71, 106, 16, 17, 73, 19, 41, 778, 1035, 23, 97, 625, 4109, 729, 113, 29, 362, 31, 256, 59170, 65553, 18026, 145, 37, 262163, 531610, 881, 41, 4874, 43, 1145, 22186, 4194327, 47, 6817, 117649, 1049201, 43047010, 4265, 53, 262873, 9780266, 6497 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
MATHEMATICA
Table[DivisorSum[n, #^EulerPhi[n/#] &, PrimeQ[#] &], {n, 60}]
PROG
(Python)
from sympy import totient, primefactors
def A369687(n): return sum(p**totient(n//p) for p in primefactors(n)) # Chai Wah Wu, Jan 28 2024
CROSSREFS
Cf. A000010 (phi), A347104.
Sequence in context: A058977 A337246 A347104 * A085818 A270709 A323382
KEYWORD
nonn,easy
AUTHOR
Wesley Ivan Hurt, Jan 28 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 June 8 13:28 EDT 2024. Contains 373217 sequences. (Running on oeis4.)