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!)
A304818 If n = Product_i p(y_i) where p(i) is the i-th prime number and y_i <= y_j for i < j, then a(n) = Sum_i y_i*i. 53
0, 1, 2, 3, 3, 5, 4, 6, 6, 7, 5, 9, 6, 9, 8, 10, 7, 11, 8, 12, 10, 11, 9, 14, 9, 13, 12, 15, 10, 14, 11, 15, 12, 15, 11, 17, 12, 17, 14, 18, 13, 17, 14, 18, 15, 19, 15, 20, 12, 16, 16, 21, 16, 19, 13, 22, 18, 21, 17, 21, 18, 23, 18, 21, 15, 20, 19, 24, 20, 19 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
If n > 1 is not a prime number, we have a(n) >= A056239(n) >= Omega(n) >= omega(n) >= A071625(n) >= ... >= Omicron(n) >= omicron(n) > 1, where Omega = A001222, omega = A001221, Omicron = A304687 and omicron = A304465.
LINKS
FORMULA
a(n) = A056239(A304660(n)).
EXAMPLE
The multiset of prime indices (see A112798) of 216 is {1,1,1,2,2,2}, which becomes {1,2,3,4,4,5,5,6,6} under A304660, so a(216) = 1+2+3+4+4+5+5+6+6 = 36.
MAPLE
a:= n-> (l-> add(i*numtheory[pi](l[i]), i=1..nops(l)))(
sort(map(i-> i[1]$i[2], ifactors(n)[2]))):
seq(a(n), n=1..100); # Alois P. Heinz, May 20 2018
MATHEMATICA
primeMS[n_]:=If[n===1, {}, Flatten[Cases[FactorInteger[n], {p_, k_}:>Table[PrimePi[p], {k}]]]];
Table[With[{y=primeMS[n]}, Sum[y[[i]]*i, {i, Length[y]}]], {n, 20}]
PROG
(PARI) a(n) = {my(f = factor(n), s = 0, i = 0); for (k=1, #f~, for (kk = 1, f[k, 2], i++; s += i*primepi(f[k, 1]); ); ); s; } \\ Michel Marcus, May 19 2018
(PARI) vf(n) = {my(f=factor(n), nb = bigomega(n), g = vector(nb), i = 0); for (k=1, #f~, for (kk = 1, f[k, 2], i++; g[i] = primepi(f[k, 1]); ); ); return(g); } \\ A112798
a(n) = {my(g = vf(n)); sum(k=1, #g, k*g[k]); } \\ Michel Marcus, May 19 2018
CROSSREFS
Sequence in context: A159070 A088241 A163126 * A088922 A357658 A143092
KEYWORD
nonn,look
AUTHOR
Gus Wiseman, May 18 2018
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 24 17:29 EDT 2024. Contains 371962 sequences. (Running on oeis4.)