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”).

A341885
a(n) is the sum of A000217(p) over the prime factors p of n, counted with multiplicity.
5
0, 3, 6, 6, 15, 9, 28, 9, 12, 18, 66, 12, 91, 31, 21, 12, 153, 15, 190, 21, 34, 69, 276, 15, 30, 94, 18, 34, 435, 24, 496, 15, 72, 156, 43, 18, 703, 193, 97, 24, 861, 37, 946, 72, 27, 279, 1128, 18, 56, 33, 159, 97, 1431, 21, 81, 37, 196, 438, 1770, 27, 1891, 499, 40, 18, 106, 75, 2278, 159, 282
OFFSET
1,2
COMMENTS
By definition, this sequence is completely additive. - Peter Munn, Aug 14 2022
LINKS
EXAMPLE
18 = 2*3*3 so a(18) = 2*3/2 + 3*4/2 + 3*4/2 = 15.
MAPLE
f:= proc(n) local t; add(t[1]*(t[1]+1)/2*t[2], t = ifactors(n)[2]) end proc:
map(f, [$1..100]);
MATHEMATICA
Prepend[Array[Total@ PolygonalNumber@ Flatten[ConstantArray[#1, #2] & @@@ FactorInteger[#]] &, 68, 2], 0] (* Michael De Vlieger, Feb 22 2021 *)
PROG
(Python3)
from sympy import factorint
def A341885(n): return sum(k*m*(m+1)//2 for m, k in factorint(n).items()) # Chai Wah Wu, Feb 25 2021
(PARI) a(n) = my(f=factor(n), p); sum(k=1, #f~, p=f[k, 1]; f[k, 2]*p*(p+1)/2); \\ Michel Marcus, Aug 14 2022
CROSSREFS
For other completely additive sequences with primes p mapped to a function of p, see A001414.
Sequence in context: A107972 A238775 A269525 * A364372 A036252 A103463
KEYWORD
nonn,easy
AUTHOR
J. M. Bergot and Robert Israel, Feb 22 2021
STATUS
approved