Tuesday, March 25, 2025

An interesting problem about balanced sums

The problem

Consider an equation of the following form

(1)i=aa+p1i=j=a+pa+p+q1j,aN

or, perhaps in a more readable notation

a+(a+1)++(a+p1)p terms=(a+p)+(a+p+1)++(a+p+q1)q terms

Lets refer to sums of this form as balanced sums. In other words, we are looking at sequences of natural numbers of length p+q, in which the sum of the first p numbers is equal to the sum of the remaining q numbers. For example

1+2=3 9+10+11+12=13+14+15 12+13+14+15+16+17+18=19+20+21+22+23

Obviously, p is always going to be greater than q.

The problem: given q - number of terms in the right-hand sum - determine n - how many different sums there are for the given value of q.

For example, for q=10 there are three different sums 9+10++26p=18=27+28++36q=10 18+19++32p=15=33+34++42q=10 100+101++110p=11=111+112++120q=10

Straightforward solution

A straighforward constructive solution for this problem can be obtained by applying the formula for the sum of arithmetic progression to both sides of the equation:

(2a+p1)p2=(2a+2p+q1)q2 (2)a=p2+(2q+1)p+q2q2(pq)=2pq(pq)(p+q1)2(pq)=pqpqp+q12

From the last expression it is obvious that increasing p while keeping q fixed will result in monotonically decreasing a. So, all we need to do is to iterate through all increasing p>q as long as a remains positive. Every integer a we encounter along the way defines one of the sums we are looking for. This presents us with an algorithm that solves the problem (if not very efficiently).

A second look

However... Looking at the results for different values of q, once can probably notice some vaguely familiar patterns and other properties of the results

qn
11
21
33
41
53
63
73
81
......
qn
309
313
321
339
343
359
365
373
......
qn
609
613
6315
641
659
669
673
683
......

All results are odd numbers. Powers of 2 seem to always produce 1, for all other values of q the results are always greater than 1. Primes always produce 3. The results appear to be identical for q and 2q. And so on... In other words, n seems to be invariant with regard to factors 2 present in q. And looking into odd factors of q one can eventually figure out the following relationship: if the prime factorization of q is

q=2jakblcm

then

(3)n=1(2k+1)(2l+1)(2m+1)

which is nothing else than the number of odd divisors of q2. For example, 602=3600 has 9 odd divisors - 1,3,5,9,15,25,45,75,225. Therefore for q=60 the answer is n=9.

This raises an interesting question: how does this connection between the above balancing sums and odd divisors comes into existence?

Odd divisors

Let's apply some transformations to (2)

a=pqpqp+q12=pqq2+q2pqp+q12=q+q2pqp+q12 (4)2a=2q2pq(pq)+1 (5)2a1=2q2pqX(pq)Y

It follows from (5) that pq must divide 2q2. More specifically, each a corresponds to a complementary pair (X,Y) of divisors of 2q2. Since 2q2 cannot possibly be a perfect square, X and Y will always be different.

Also, 2a1 is odd, meaning that divisors X and Y must have different parity: if X is even, Y must be odd and vice versa.

Finally, 2a1 is positive. This means that a complementary pair (X,Y) can only be used in (5) in one specific order: the smaller out of two divisors should be used as pq. In other words, each complementary pair of divisors produces only one valid value of a, not two.

So, the number of different odd values of the right-hand side of (5) coincides with the number of different even-odd pairs whose product equals 2q2. This is nothing else than the number of odd divisors of 2q2, which is the same as the number of odd divisors of q2.

And this is exactly what's expressed by (3).

Some additional remarks

  • Since 2q2 is even, there is always at least one complementary even-odd pair of divisors that satisfies the above requirements: (2q2,1). Substituting pq=1 into (4) we get a=q2. I.e. every perfect square q2 is a starting point for a balanced sum with q+1 terms on the left-hand side and q terms on the right-hand side

    4+5+6=7+8 25+26+27+28+29+30=31+32+33+34+35

    Conversely, all balanced sums of with "almost equal" number of terms on both sides (i.e. p=q+1) start from a pefect square.

    When q is a power of 2, a balanced sum of this kind is the only one available.

  • Using a complementary even-odd pair of divisors (X,Y) in (4) in "reverse" order (i.e. substituting the larger divisor as pq) results in negative value of a. Of course, we'll still get a sum that satisfies the equality (1). For example, for q=10: 2q2=200, for pair (8,25) we can substitute pq=25 and end up with 2a=200/2525+1=16,a=8. a=8 also provides us with a balanced sum

    (8)+(7)++0++26p=35=27+28++36q=10

    but it "doesn't count" in the original statement of the problem.

  • It is easy to show that if the smaller divisor produces value a=A>0, then the larger divisor will from the same pair will produce a=(A1). Consequently, the the left-hand side sum corresponding to the negative value of a will have the following form

    ((A1)+((A2))++(1)+0+1++(A1)sums to zero+A+(A+1)+

    The left-hand side includes a symmetrical sequence of 2A1 additional terms before A, which all sum to zero. This means that a sequence of terms starting from a=(A1) will ultimately lead to the same sum as a sequence starting from a=A, i.e. both divisors from a complementary pair lead to the same value of the sum and to the same right-hand side in (1) (which is already ilustated by the above (8,25) example)

  • Obtaining a=0 from (4) is only possible when 2q2 is a product of two consequitive natural numbers. For example, for q=6: 2q2=72=8×9.

    Substituting pq=8 we obtain 2a=72/88+1=2. Substituting pq=9 we obtain 2a=72/99+1=0. Again, the latter gives us a balanced sum starting from 0, but it is not eligible in the original statement of the problem.

  • Finally, values of 2q2 representable as product of two consequitive natural numbers satisfy

    x(x+1)2=q2,xN

    The left-hand side represents triangular numbers. So, obtaining zero on the right-hand side of (4) is only possible when q2 is a triangular number.