Consider a number $n > 0$ in base $b ≥ 2$, where it is written in standard notation with $k+1$ digits $a_i$ as:
$${\displaystyle n=\sum _{i=0}^{k}a_{i}b^{i}}$$
with, as usual, $0 ≤ a_i < b$ for all $i$ and $a_k ≠ 0$. Then n is palindromic if and only if $a_i = a_{k-i}$ for all $i$.
And defined $P_l$ as
$k+1$ is number of digits in $n$
$$ (\sum_{i=0}^{k}|a_{i}-a_{k-i}|)/2=l$$ Then
$$ n\in P_l$$
It means $P_0 =$ palindromic number
Example
● $121 \in P_0$
● $357 \in P_4$
● $9 \in P_0$
Let's defined function $\lambda_{b,n} (j)$ as
$\lambda_{b,n} (j)$ is legal if natural number $n \in P_r$ with base $b$ converted in $n \in P_j$ through the iterative process of repeatedly reversing its digits and adding the resulting numbers (This process is sometimes called the 196-algorithm). so $r$ is depend on $b,n$
Note If n is Lychrel number then $\lambda_{b,n} (0)$ is not legal
Example
Let's given $j=16$, $b=10$, $n=9519$
To check $\lambda_{10,9519} (16)$ is legal or not
$9519\in P_4$ so $ 9519+9159=18678$ again $18678+87681=106359$ where $106359 \in P_{16}$
Hence $\lambda_{10,9519} (16)$ is legal
Question
<p>1) Can we prove <span class="math-container">$\lambda_{10,n} (1)$</span> is legal for all <span class="math-container">$ n\in \mathbb{N} $</span> </p> <p>2) Can we prove there exist legal <span class="math-container">$\lambda_{b,n} (j)$</span> for all <span class="math-container">$ n,j\in \mathbb{N} $</span> for some <span class="math-container">$b$</span></p>