OFFSET
1,1
COMMENTS
All numbers from 0 to 99 trivially have the property, so we require at least three digits.
Question: There seems to be a pattern. Can someone find a formula for index of a given member?
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..1000
EXAMPLE
112 is a member yielding (0)2.
131 and 135 both are members and the palindrome arising in both cases is 22.
MATHEMATICA
Select[Range[100, 500], PalindromeQ[FromDigits[Abs[ Differences[ IntegerDigits[ #]]]]]&] (* Requires Mathematica version 10 or later *) (* Harvey P. Dale, Nov 14 2019 *)
CROSSREFS
KEYWORD
base,easy,nonn
AUTHOR
Amarnath Murthy, Sep 18 2003
EXTENSIONS
Corrected and extended by Harvey P. Dale, Nov 14 2019
STATUS
approved