Hello here is a problem with which I struggle quite a bit: For any integer $n \geq 2$, with prime factor decomposition $n = p_1^{α_1}\times p_2^{α_2}\times ... p_k^{a_k}$, let $f(n) = α_1^{p_1}\times α_2^{p_2}\times ... α_k^{p_k}$. Which means for instance that, since $424242 = 2^1\times 3^2\times 7^2 \times 13^{1} \times 37^{1}$, we have $f(424242) = 1^2 \times 2^3 \times 2^7 \times 1^{13} \times 1^{37} = 2^{10} = 1024$. And then, $f(1024) = 10^2 = 100$. Doing it one more time, with $100 = 2^2\times 5^2$, $f(100) = 2^2\times 2^5 = 128$. Let $f^i$ denote the composition of $f$ $i$ times with itself (meaning that $f^2(424 242) = 100$, and then $f^3(424 242) = 128$).
The following three questions give me a lot of trouble:
- Give an example of an integer $n$ such that the sequence $(f^i(n))$ is periodic with period $2$ (but not constant). Characterize such integers.
- Solve: $f(n) = 1$, then $f(n) = 2$ and finally $f(n)=4$.
- (the one giving me the most trouble:) Let $(a_1,a_2, ... , a_k)$ k integers greater than or equal to $2$ and $(b_1,b_2,...,b_k)$ such that $b_k \in \mathbb{N}$ (with the definition that $\mathbb{N}$ contains $0$). Show that: $$\sum_{i=1}^k a_i b_i \leq \prod_{i=1}^k a_i ^{b_i}$$.
I would appreciate any pointers, especially concerning the third one. I'll keep searching on my end, but arithmetic is not my strong suit.
Thank you in advance.
Please let me know if there are any mistakes (there probably are). I know that my answer to 1. does not give a complete characterisation. I will think more about it and edit my answer later, perhaps. I might also clean up the proof of 3.
Edit: I have a necessary and sufficient condition for $n$ to have period $2$, but it's not that nice. Let $v_p$ be the $p$-adic valuation so that $v_p(n) = m$ if and only if $p^m$ divides $n$ and $p^{m + 1}$ doesn't. \begin{align} f(n) = \prod_p f(p^{v_p(n)}) = \prod_p v_p(n)^p = \prod_p (\prod_q q^{(v_qv_p)(n)})^p = \prod_q q^{\sum_p p(v_qv_p)(n)} \\ f^2(n) = \prod_q \Big(\sum_p p(v_qv_p)(n)\Big)^q = \prod_q \Big(\prod_r r^{v_r(\sum_p p(v_qv_p)(n))}\Big)^q = \prod_r r^{\sum_q qv_r(\sum_p p(v_qv_p)(n))}. \end{align} By unique factorisation, $n$ has period $2$ if and only if it satisfies the equation \begin{align} v_r(n) = \sum_q qv_r(\sum_p p(v_qv_p)(n)) \end{align} for all primes $r$. I think that there will not be a nice necessary and sufficient condition because we cannot calculate the $r$-adic valuation of the sum over $p$ in any straight-forward way. I would be interested in any developments though.