OFFSET
1,2
FORMULA
a(n) = Sum_{k=1..n} A128187(n,k).
a(n) = Sum_{i=1..floor((n+2)/2)} d(n+2-2i), where d(n) is the number of divisors of n. - Wesley Ivan Hurt, Jul 12 2015
EXAMPLE
a(6) = 9 = sum of row 6 terms of A128187: (3 + 3 + 1 + 1 + 1).
MAPLE
A128188 := proc(n)
add(A128187(n, k), k=1..n) ;
end proc; # R. J. Mathar, Apr 16 2013
with(numtheory): A128188:=n->add(tau(n+2-2*i), i=1..floor((n+2)/2)): seq(A128188(n), n=1..100); # Wesley Ivan Hurt, Jul 12 2015
CROSSREFS
KEYWORD
nonn
AUTHOR
Gary W. Adamson, Feb 17 2007
STATUS
approved