1
$\begingroup$

First of all I am a programmer, not a mathematician, so I may articulate what I am trying to say very poorly. I was working with powers of $2$ when I noticed a relationship I had never noticed before. Basically, if you look at the powers of $2$, every other power of two can be added together make a multiple of 10. Furthermore, if the two numbers are $2^{10}$ and $2^8$, adding them together will result in $2^7\cdot 10$. Put another way, $2^n + 2^{n-2} = 2^{n-3}\cdot 10$.

Does this pattern have a name? I am attaching an image just to clarify my poor explanation. Thanks all! $ \begin{matrix} & & \vdash & 20 & \dashv & \vdash & 160 & \dashv & \vdash & 1280 & \dashv \\ 1 & 2 & 4 & 8 & 16 & 32 & 64 & 128 & 256 & 512 & 1024 \\ & \vdash & 10 & \dashv & \vdash & 80 & \dashv & \vdash & 640 & \dashv \\ \end{matrix} $

  • 0
    It seems to be the same!2012-04-10

1 Answers 1

5

Notice the following:

$2^n+2^{n+2}=2^n(1+2^2)=2^n\cdot 5 = 10\cdot 2^{n-1}$

For $n=8$ we have that indeed $2^n+2^{n+2}=2^8+2^{10}=2^7\cdot10$ as you have mentioned.