OFFSET
1,2
COMMENTS
Sequence is not injective. 4153248 is the smallest number that occurs more than once, as a(1368) and as a(2277). See example in A327861. - Antti Karttunen, Sep 29 2019
LINKS
G. C. Greubel, Table of n, a(n) for n = 1..10000
FORMULA
EXAMPLE
For n=4, 4'= 4, 4*4' = 16, so a(4)=16.
MAPLE
der:=n->n*add(op(2, p)/op(1, p), p=ifactors(n)[2]):
seq(der(n)*n, n=1..50);
MATHEMATICA
A003415[n_]:= If[Abs@n < 2, 0, n Total[#2/#1 & @@@FactorInteger[Abs@n]]]; Table[n*A003415[n], {n, 1, 50}] (* G. C. Greubel, Dec 29 2017 *)
PROG
(PARI) a(n) = n*sum(i=1, #f=factor(n)~, n/f[1, i]*f[2, i]); \\ Michel Marcus, Dec 30 2017
CROSSREFS
KEYWORD
nonn
AUTHOR
Giorgio Balzarotti, May 04 2011
STATUS
approved