2

If $n = 2^k$, then $\sigma(n) = 2 \times 2^k - 1$,

For example:

$$\sigma(28) = \sigma(2^2) \times \sigma(7) = 7 \times 8 = 56$$

But how about:

$$\sigma(100) = \sigma(2^2) \times \sigma(5^2) = 7 \times x$$

I couldn't figure out how to calculate $\sigma(x^k)$

1 Answers1

2

Hint: $\sigma$ is multiplicative and $\sigma(p^k)=1+p+p^2+ \cdots +p^{k-1}+p^k=\frac{p^{k+1}-1}{p-1}$, where $p$ is prime.

Nicky Hekster
  • 49,281
  • I knew that for the case $\sigma(5^2) = 31$ as $7 \times 31 = 217$ which is the sum of divisors of 100. But as I did not know how to get 31 I omitted this number from the question. Thank you very much. – Patrick Bard Dec 09 '14 at 20:03
  • This is what I was trying to get at...the proof is no different at all for other bases. – fretty Dec 09 '14 at 20:08
  • Patrick, you are welcome! – Nicky Hekster Dec 09 '14 at 20:08
  • @fretty Yes, I know. But I only knew the base 2. I am sorry, but I couldn't understand the formula I commented above on my first look, I only understood the base 2 example. – Patrick Bard Dec 09 '14 at 20:10