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!)
A190118 a(n) = Sum_{k=1..n} k/gcd(k,k'), where n' is arithmetic derivative of n. 3
1, 3, 6, 7, 12, 18, 25, 27, 30, 40, 51, 54, 67, 81, 96, 97, 114, 120, 139, 144, 165, 187, 210, 216, 221, 247, 248, 255, 284, 314, 345, 347, 380, 414, 449, 452, 489, 527, 566, 576, 617, 659, 702, 713, 728, 774, 821, 824, 831, 841 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Use gcd(1,0)=1.
LINKS
EXAMPLE
1/gcd(1,1')+2/gcd(2,2')+3/gcd(3,3')=1+2/1+3/1=6 ->a(3)=6.
MAPLE
der:=n->n*add(op(2, p)/op(1, p), p=ifactors(n)[2]):
seq(add(i/gcd(der(i), i), i=1..n), n=1..50);
MATHEMATICA
A003415[n_]:= If[Abs@n < 2, 0, n Total[#2/#1 & @@@FactorInteger[Abs@n]]];
Table[Sum[k/GCD[k, A003415[k]], {k, 1, n}], {n, 1, 50}] (* G. C. Greubel, Dec 29 2017 *)
CROSSREFS
Cf. A003415.
Sequence in context: A332904 A370900 A069891 * A249714 A250177 A333002
KEYWORD
nonn
AUTHOR
Giorgio Balzarotti, May 04 2011
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 May 11 10:40 EDT 2024. Contains 372409 sequences. (Running on oeis4.)