given an integer(sum)(>0) can it be expressed as the sum of n terms of arithmetic progression having a positive first term and positive common difference ? I tried the following but doesn't seem to work..
if((n%2==0&&(sum%(n/2)==0)&&sum>1)||(n-1)%2==0)
then yes
else
no
Thanks.