OFFSET
1,2
COMMENTS
It would be nice to have an estimate of how fast this sequence grows.
Robert Israel observed (see link) that for the first 100000 terms, a(n) is roughly c*n^2*(log n)^2, where c is between 0.2 and 0.25. However, the ratio a(n)/(n log n)^2 does not seem to be converging.
LINKS
N. J. A. Sloane, Table of n, a(n) for n = 1..20000
Robert Israel, Graph of a(n)/(n log n)^2 for n <= 100000
MAPLE
G:= proc(n) local L;
local F;
F:= sort(ifactors(n)[2], (a, b) -> a[1]<b[1]);
F:= map(op, subs(1=NULL, F));
parse(cat(op(map(convert, F, string))))
end proc:
G(1):= 1:
ListTools:-PartialSums(map(G, [$1..100])); # Robert Israel, Jun 19 2017
MATHEMATICA
Accumulate[A080670] (* Robert Price, Mar 16 2020 *)
CROSSREFS
KEYWORD
nonn,base
AUTHOR
N. J. A. Sloane, Jun 19 2017
STATUS
approved