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

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A064949 Sum_{i|n, j|n} min(i,j). 1
1, 5, 6, 15, 8, 32, 10, 37, 23, 42, 14, 100, 16, 52, 52, 83, 20, 125, 22, 132, 64, 72, 26, 252, 45, 82, 76, 162, 32, 286, 34, 177, 88, 102, 88, 397, 40, 112, 100, 336, 44, 352, 46, 222, 208, 132, 50, 572, 75, 239, 124, 252, 56, 416, 120, 414, 136, 162, 62, 916, 64 (list; graph; refs; listen; history; internal format)
OFFSET

1,2

LINKS

Harry J. Smith, Table of n, a(n) for n=1,...,1000

FORMULA

a(n) = Sum_{i=1..tau(n)} (2*tau(n)-2*i+1)*d_i, where {d_i}, i=1..tau(n), is increasing sequence of divisors of n.

EXAMPLE

a(6) = dot_product(7,5,3,1)*(1,2,3,6)=7*1+5*2+3*3+1*6=32.

MAPLE

with(numtheory): seq(add((2*tau(n)-2*i+1)*sort(convert(divisors(n), 'list'))[i], i=1..tau(n)), n=1..200);

PROG

(PARI) { for (n=1, 1000, d=divisors(n); t=length(d); a=sum(i=1, t, (2*t - 2*i + 1)*d[i]); write("b064949.txt", n, " ", a) ) } [From Harry J. Smith (hjsmithh(AT)sbcglobal.net), Oct 01 2009]

CROSSREFS

Cf. A000005, A000203.

Sequence in context: A180686 A145491 A060724 * A160109 A191213 A121847

Adjacent sequences:  A064946 A064947 A064948 * A064950 A064951 A064952

KEYWORD

nonn

AUTHOR

Vladeta Jovovic (vladeta(AT)eunet.rs), Oct 28 2001

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 February 18 00:14 EST 2012. Contains 206085 sequences.