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!)
A351926 a(n) = Sum_{d|n, p|n, (p^d)|n, p prime} p. 0
0, 2, 3, 4, 5, 5, 7, 4, 3, 7, 11, 7, 13, 9, 8, 6, 17, 8, 19, 9, 10, 13, 23, 9, 5, 15, 6, 11, 29, 10, 31, 6, 14, 19, 12, 10, 37, 21, 16, 9, 41, 12, 43, 15, 8, 25, 47, 11, 7, 12, 20, 17, 53, 11, 16, 11, 22, 31, 59, 12, 61, 33, 10, 6, 18, 16, 67, 21, 26, 14, 71, 12, 73, 39, 8, 23, 18 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
EXAMPLE
a(12) = 7; we have 2^1, 2^2 and 3^1 dividing 12, so a(12) = 2 + 2 + 3 = 7.
PROG
(PARI) a(n) = my(f=factor(n), d=divisors(f)); sum(k=1, #f~, sum(m=1, #d, if ((n % f[k, 1]^d[m]) == 0, f[k, 1]))); \\ Michel Marcus, Feb 26 2022
CROSSREFS
Sequence in context: A086993 A238714 A289311 * A345303 A345310 A029908
KEYWORD
nonn
AUTHOR
Wesley Ivan Hurt, Feb 25 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 April 25 07:07 EDT 2024. Contains 371964 sequences. (Running on oeis4.)