I was wondering if there a way to figure out the number of ways to express an integer by adding up consecutive natural numbers.
For example for N=3 there is one way to express it
1+2=3
I have no idea where to start so any help would be appreciated
Answer
The sum of the integers from 1 to n is n(n+1)2. Hence, the sum of the integers from m+1 to n is simply n(n+1)2−m(m+1)2. So, if the sum of the integers from m+1 to n is N, then
n(n+1)2−m(m+1)2=N
(n2+n)−(m2+m)=2N
(n−m)(n+m+1)=2N
Hence, n−m and n+m+1 are complementary factors of 2N. Clearly, n−m is smaller than n+m+1, and since (n+m+1)−(n−m)=2m+1, the factors have opposite pairity.
For any f1 and f2 such that 2N=f1f2, f1>f2 and f1, f2 have opposite parity, we can solve n+m+1=f1 and n−m=f2 to get n=f1+f2−12 and m=f1−f2−12.
Therefore, the number of ways to write N=(m+1)+(m+2)+⋯+(n−1)+n is simply the number of ways to factor 2N into two distinct positive integers with opposite parity.
Suppose 2N=2k0+1pk11pk22⋯pkrr where p1,p2,…,pr are distinct odd primes. There are (k1+1)(k2+1)⋯(kr+1) ways to divide the odd primes between f1 and f2. There are 2 ways to give all 2's to one of the factors f1, f2. However, we need to divide by 2 since this overcounts cases in which f1<f2. Also, we need to subtract out the one trivial solution n=N and m=N−1. This leaves us with (k1+1)(k2+1)⋯(kr+1)−1 ways to factor 2N into two distinct positive integers with opposite parity.
Therefore, if N has prime factorization N=2k0pk11pk22⋯pkrr, then there are (k1+1)(k2+1)⋯(kr+1)−1 ways to write N as the sum of two or more consecutive positive integers.
No comments:
Post a Comment