1

I am give $s_n = 2^n + 3^n + 4^n$ for $n = 1,2,...$

so far I have

n = 1 : 2 + 3 + 4 = 9

n = 2 : 4 + 9 + 16 = 29

n = 3 : 8 + 27 + 64 = 99

n = 4 : 16 + 81 + 256 = 353

I am having a hard time trying to figure out the pattern.

1 Answers1

2

The characteristic equation must be \begin{eqnarray*} (x-2)(x-3)(x-4)=0. \\ \end{eqnarray*} So the recurrence relation must be \begin{eqnarray*} \color{blue}{s_{n+3}-9s_{n+2}+26s_{n+1}-24s_n=0}. \\ \end{eqnarray*}

Donald Splutterwit
  • 36,613
  • 2
  • 26
  • 73