Question:medium

Let a1 = b1 = 1, an = an – 1 + 2 and bn = aa + bn – 1 for every natural number ≥ 2. Then\(\sum_{n=1}^{15}\) \(a_n⋅b_n\) is equal to ______.

Updated On: Apr 16, 2026
Show Solution

Correct Answer: 27560

Solution and Explanation

Let's determine an and bn for n ≥ 2 based on the given recursion: 

  • a1 = 1,
  • an = an-1 + 2 for n ≥ 2. This implies an = 2n - 1.

Now, let's compute bn:

  • b1 = 1,
  • bn = an + bn-1.

Calculate bn by plugging in the values of an:

  • b2 = a2 + b1 = 3 + 1 = 4,
  • b3 = a3 + b2 = 5 + 4 = 9,
  • Continue this pattern up to n = 15.

We need to calculate \(\sum_{n=1}^{15} a_n \cdot b_n\):

nanbnan · bn
1111
23412
35945
4716112
5925225
61136396
71349637
81564960
917811377
10191001900
11211212541
12231443312
13251694225
14271965292
15292256525

Compute the sum of products:

1 + 12 + 45 + 112 + 225 + 396 + 637 + 960 + 1377 + 1900 + 2541 + 3312 + 4225 + 5292 + 6525 = 27560.

Hence, the final sum is 27560, which falls within the specified range (27560, 27560).

Was this answer helpful?
0