How can we find the seed from a given palindrome?

  • Context: Undergrad 
  • Thread starter Thread starter rsala004
  • Start date Start date
  • Tags Tags
    Numerical
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
1 reply · 2K views
rsala004
Messages
23
Reaction score
0
not really math but wondering if someone is clever enough to know answer to this..

Some of you may know that if you pick (almost) any integer and add its reversed digits to it, and repeat this process ..you will eventually get a palindrome.

for example:
# 56 becomes palindromic after one iteration: 56+65 = 121.
# 57 becomes palindromic after two iterations: 57+75 = 132, 132+231 = 363.
# 10,911 reaches the palindrome 4668731596684224866951378664 after 55 steps
(http://en.wikipedia.org/wiki/Lychrel_number)

If we call the numbers we start with as "seeds" ...we can easily produce a palindrome given (almost) any seed.

How do we extract a seed from a given palindrome?
(note that all intermediate steps count as seeds..so you only need to go back "1 step")

any ideas?
 
Mathematics news on Phys.org
rsala004 said:
if you pick (almost) any integer and add its reversed digits to it, and repeat this process ..you will eventually get a palindrome.

Actually, I would expect the opposite: that almost all numbers are 'Lychrel' numbers. I think looking at 1-10 digit numbers gives us a bad feeling for their asymptotic behavior, since ,ost numbers are large.