login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A069359 a(1)=0; for n>1, a(n)=n*sum(p|n,1/p) where p are primes dividing n. 3
0, 1, 1, 2, 1, 5, 1, 4, 3, 7, 1, 10, 1, 9, 8, 8, 1, 15, 1, 14, 10, 13, 1, 20, 5, 15, 9, 18, 1, 31, 1, 16, 14, 19, 12, 30, 1, 21, 16, 28, 1, 41, 1, 26, 24, 25, 1, 40, 7, 35, 20, 30, 1, 45, 16, 36, 22, 31, 1, 62, 1, 33, 30, 32, 18, 61, 1, 38, 26, 59, 1, 60, 1, 39, 40, 42, 18, 71, 1, 56 (list; graph; refs; listen; history; text; internal format)
OFFSET

1,4

COMMENTS

Also arithmetic derivative of squarefree numbers: a(A005117(n)) = A068328(n) = A003415(A005117(n)). - Reinhard Zumkeller, Jul 20 2003

LINKS

Table of n, a(n) for n=1..80.

FORMULA

G.f.: Sum(x^p(j)/(1-x^p(j))^2,j=1..infinity), where p(j) is the j-th prime. - Vladeta Jovovic, Mar 29 2006

MAPLE

A069359 := n -> add(n/d, d = select(isprime, numtheory[divisors](n))):

seq(A069359(i), i = 1..20); # Peter Luschny, Jan 31 2012

PROG

(Sage)

def A069359(n) :

    D = filter(is_prime, divisors(n))

    return add(n/d for d in D)

print [A069359(i) for i in (1..20)] # Peter Luschny, Jan 31 2012

CROSSREFS

Sequence in context: A161686 A069626 A205443 * A014652 A060448 A090080

Adjacent sequences:  A069356 A069357 A069358 * A069360 A069361 A069362

KEYWORD

nonn,changed

AUTHOR

Benoit Cloitre, Apr 15 2002

STATUS

approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified May 22 18:50 EDT 2013. Contains 225561 sequences.