OFFSET
0,1
COMMENTS
Does the sequence contain a palindrome?
There is no palindrome among the initial 100000 (10^5) terms.
EXAMPLE
49 + 94 = 143, 143 + 431 = 574, 574 + 745 = 1319, 1319 + 3191 = 4510, 4510 + 5104 = 9614, ...
PROG
(PARI) eva(n) = subst(Pol(n), x, 10)
rot(vec) = if(#vec < 2, return(vec)); my(s=concat(Str(2), ".."), v=[]); s=concat(s, Str(#vec)); v=vecextract(vec, s); v=concat(v, vec[1]); v
terms(n) = my(x=49); for(i=1, n, print1(x, ", "); x=x+eva(rot(digits(x))))
terms(50) \\ Print initial 50 terms
(Python)
def pal(s): return s == s[::-1]
def rotl(s): return s[1:] + s[0]
def A345111(n): return n + int(rotl(str(n)))
def aupto(n):
alst = [49]
for i in range(n): alst.append(A345111(alst[-1]))
return alst
print(aupto(26)) # Michael S. Branicky, Jun 09 2021
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Felix Fröhlich, Jun 09 2021
STATUS
approved