function fn(min,max,step){ var n=1+Math.floor((max-min)/step); return ((2*min+step*(n-1))/2*n); }; alert(fn(9,15,5));