login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A350996
a(n) = Sum_{k=1..n} k * rad(k).
3
1, 5, 14, 22, 47, 83, 132, 148, 175, 275, 396, 468, 637, 833, 1058, 1090, 1379, 1487, 1848, 2048, 2489, 2973, 3502, 3646, 3771, 4447, 4528, 4920, 5761, 6661, 7622, 7686, 8775, 9931, 11156, 11372, 12741, 14185, 15706, 16106, 17787, 19551, 21400, 22368, 23043, 25159
OFFSET
1,2
FORMULA
a(n) = Sum_{k=1..n} A064549(k).
a(n) ~ c * n^3 / 3, where c = A065463. - Amiram Eldar, Dec 09 2023
EXAMPLE
a(4) = 22; a(4) = Sum_{k=1..4} k * rad(k) = 1*rad(1) + 2*rad(2) + 3*rad(3) + 4*rad(4) = 1*1 + 2*2 + 3*3 + 4*2 = 22.
MATHEMATICA
f[n_] := n * Times @@ FactorInteger[n][[;; , 1]]; Accumulate @ Array[f, 50] (* Amiram Eldar, Jan 29 2022 *)
PROG
(PARI) a(n) = sum(k=1, n, k*factorback(factorint(k)[, 1])); \\ Michel Marcus, Jan 30 2022
CROSSREFS
Sequence in context: A048769 A190514 A085950 * A043473 A017221 A052219
KEYWORD
nonn
AUTHOR
Wesley Ivan Hurt, Jan 28 2022
STATUS
approved