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!)
A345261 a(n) = Sum_{d|n} d * rad(d). 0
1, 5, 10, 13, 26, 50, 50, 29, 37, 130, 122, 130, 170, 250, 260, 61, 290, 185, 362, 338, 500, 610, 530, 290, 151, 850, 118, 650, 842, 1300, 962, 125, 1220, 1450, 1300, 481, 1370, 1810, 1700, 754, 1682, 2500, 1850, 1586, 962, 2650, 2210, 610, 393, 755, 2900, 2210, 2810, 590 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
If p is prime, a(p) = Sum_{p|d} d * rad(d) = 1*1 + p*p = p^2 + 1.
LINKS
FORMULA
a(prime(n)) = A066872(n). - Michel Marcus, Jun 12 2021
EXAMPLE
a(10) = Sum_{d|10} d * rad(d) = 1*1 + 2*2 + 5*5 + 10*10 = 1 + 4 + 25 + 100 = 130.
MATHEMATICA
Table[Sum[i (1 - Ceiling[n/i] + Floor[n/i]) Product[k^((PrimePi[k] - PrimePi[k - 1]) (1 - Ceiling[i/k] + Floor[i/k])), {k, i}], {i, n}], {n, 80}]
PROG
(PARI) rad(n) = factorback(factorint(n)[, 1]);
a(n) = sumdiv(n, d, d*rad(d)); \\ Michel Marcus, Jun 12 2021
CROSSREFS
Cf. A007947 (rad), A066872.
Sequence in context: A272267 A195735 A061145 * A321558 A328667 A317966
KEYWORD
nonn
AUTHOR
Wesley Ivan Hurt, Jun 12 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 April 25 11:06 EDT 2024. Contains 371967 sequences. (Running on oeis4.)