OFFSET
1,5
COMMENTS
See the illustration in the second link: a(n) is the number of arcs that are intercepted by a vertical line intersecting the abscissa at n.
Sum of the differences of the number of divisors of the largest parts and the number of divisors of the smallest parts of the partitions of n into two parts. - Wesley Ivan Hurt, Jan 05 2017
LINKS
FORMULA
a(n) = Sum_{i=1..floor(n/2)} d(n-i) - d(i) where d(n) is the number of divisors of n. - Wesley Ivan Hurt, Jan 05 2017
MAPLE
A177235 := proc(n) local a; a :=0 ; for k from 1 to n-1 do if n mod k <> 0 and type(floor(n/k), 'odd') then a := a+1 ; end if; end do: a ; end proc:
seq(A177235(n), n=1..120) ; # R. J. Mathar, May 24 2010
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Omar E. Pol, May 23 2010
EXTENSIONS
Terms from a(16) onwards from R. J. Mathar, May 24 2010
STATUS
approved