Given a sequence $3, 4, 11, 16, 42\ldots $ how can I derive a general formula for this sequence? Is there any optimised approach?
My approach: the given series is equal to summation of $\binom{n}{k}$ (here $k$ is from $n/2$ to $n$).
Given a sequence $3, 4, 11, 16, 42\ldots $ how can I derive a general formula for this sequence? Is there any optimised approach?
My approach: the given series is equal to summation of $\binom{n}{k}$ (here $k$ is from $n/2$ to $n$).
Hint:
This is what you want:
$$\sum_{k=\lfloor n/2\rfloor}^n \binom{n}{k}$$
You can use:
$$\sum_{k=0}^n \binom{n}{k} = 2^n$$
And the fact that
$$\binom{n}{k} = \binom{n}{n-k}$$