I posed a conjecture which is a generalization of Conjecture on palindromic numbers
My question is to find a proof or a disproof of it. I have put it in the comments section of the page of the OEIS sequence A266577. Where OEIS is the online encyclopedia of integer sequences. Here is the link of the sequence: https://oeis.org/A266577
The conjecture is as follows: For integers $n$ and $m > 1$, let $b(n,m)=n^m+1$, $S(n,m) =$ sequence of numbers of the form $(b(n,m)^k+\cdots+b(n,m)^{(n-1)k}+1)/n$, where $k$ is any nonnegative integer. Then for each positive integer $s$, $(b(n,m)^s-1)\cdot$(product of any $m$ not necessarily distinct terms of $S(n,m)$) is palindromic in base $b(n,m)$.
Example: assume $n=5$ and $m=3$, then $b(5,3)=5^3+1=126$. Assume $k_1=1$ and $k_2=1$ and $k_3=2$ (they are three values since $m=3$). Assume $s=3$; then we have the calculation $$((126+126^2+126^3+126^4+1)/5)^2\cdot (126^2+126^4+126^6+126^8+1)/5\cdot (126^3-1)$$ which is equal to: $32807046133985032885720309126001$ and this number has the base-$126$ expansion $(1,3,7,12,19,25,31,34,37,37,37,34,31,25,19,12,7,3,1)_{126}$ which is a palindromic number in base $126$.
Professor Amiram Eldar wrote the following code in the PAR/GP language:
ispal(d) = Vecrev(d) == d ;
is(n, m, s) = {my(b = n^m + 1, c = (b^s - 1) * prod(k = 1, m, (1 + sum(i = 1, n-1, b^(i*k)))/n), d = digits(c,b)); ispal(d);}
for(n = 2, 30, for(m = 2, 30, for(s = 1, 30, if(!is(n, m, s), print(n, m, s); break))))
It runs successfully, without finding any counter-example.