OFFSET
1,3
EXAMPLE
The multiset spanning an initial interval of positive integers with multiplicities equal to the prime indices of 90 in weakly decreasing order is {1,1,1,2,2,3,3,4}, so a(90) = 1+1+1+2+2+3+3+4 = 17.
MATHEMATICA
nrmptn[n_]:=Join@@MapIndexed[Table[#2[[1]], {#1}]&, If[n==1, {}, Flatten[Cases[FactorInteger[n]//Reverse, {p_, k_}:>Table[PrimePi[p], {k}]]]]];
Total/@Array[nrmptn, 100]
CROSSREFS
KEYWORD
nonn
AUTHOR
Gus Wiseman, Aug 23 2018
STATUS
approved