%I #33 Feb 14 2021 08:17:45
%S 1,2,3,4,10,100,105,181,262,267,343,348,424,429,681,762,767,843,848,
%T 924,929,1000,10000,100000,1000000,10000000,63999991,72999982,
%U 81999973,90999964,100000000,1000000000,10000000000,100000000000,1000000000000,10000000000000,100000000000000,1000000000000000,10000000000000000
%N Numbers k such that k +- (sum of digits of k) are both palindromes.
%C For k = 0, 1, 2, ..., 10^k is a member of this sequence, so A011557 is a subsequence.
%C Also, floor(a(n)/10) must be in A244573.
%C Intersection of A229545 and A229621. - _Michel Marcus_, Jun 30 2014
%C The corresponding digit sums are: 1, 2, 3, 4, 1, 1, 6, 10, 10, 15, 10, 15, 10, 15, 15, 15, 20, 15, 20, 15, 20, 1, 1, 1, 1, 1, 55, 55, 55, 55, 1, 1, .... - _Derek Orr_, Jun 30 2014
%C When the digits sums are 1, the terms are a power of 10 terms, with corresponding palindromes being 2 apart (consecutive palindromes). The next instances of consecutive palindromes appear when digit sums are 55, so that the palindromes are 110 apart (see sequence A104459 that lists the possible differences between adjacent palindromes). - _Michel Marcus_, Jul 01 2014
%C There are infinitely many terms in this sequence that are not of the form 10^k for some k. Take the number 180 {59 9's} 631. This is a 65-digit number (180999...999631). This number is a member of this sequence. From this number, we can generate 34 other numbers. Keeping the 59 9's there, to preserve its properties, subtract 9 from 180 and add 90 to 631. Now we have 171 {59 9's} 721. This is also a member. The 59 9's are only to make the digit sum = 550. Thus, the two palindromes are 1100 apart, they are consecutive. If we keep doing this arithmetic (subtract 9 from the first number and add 90 to the second), we get 162 {59 9's} 811, 153 {59 9's} 901, 144 {58 9's} 991. The last number only has 58 9's in order to make sure the digit sum stays at 550. Other numbers and patterns to them have been listed in an a-file. Similarly, patterns like this will appear when considering digit sums of 5500 and larger. - _Derek Orr_, Jul 01 2014
%H Derek Orr, <a href="/A244551/a244551.txt">More terms in the sequence</a>
%e 267 - (2+6+7) = 252 is a palindrome and 267 + (2+6+7) = 282 is also a palindrome. Thus 252 is a member of this sequence.
%o (PARI) rev(n)={r="";for(i=1,#digits(n),r=concat(Str(digits(n)[i]),r));return(eval(r))}
%o for(n=1,10^7,dig=digits(n);s=sum(k=1,#dig,dig[k]);sm=n-s;la=n+s;if(rev(sm)==sm&&rev(la)==la,print1(n,", ")))
%o (Python)
%o def palgen(l,b=10): # generator of palindromes in base b of length <= 2*l
%o if l > 0:
%o yield 0
%o for x in range(1,l+1):
%o n = b**(x-1)
%o n2 = n*b
%o for y in range(n,n2):
%o k, m = y//b, 0
%o while k >= b:
%o k, r = divmod(k,b)
%o m = b*m + r
%o yield y*n + b*m + k
%o for y in range(n,n2):
%o k, m = y, 0
%o while k >= b:
%o k, r = divmod(k,b)
%o m = b*m + r
%o yield y*n2 + b*m + k
%o A244551_list = []
%o for p in palgen(9):
%o l = len(str(p))
%o for i in range(1,l*9+1):
%o n = p-i
%o if n > 0:
%o if sum((int(d) for d in str(n))) == i:
%o s = str(n-i)
%o if s == s[::-1]:
%o A244551_list.append(n) # _Chai Wah Wu_, Aug 24 2015
%Y Cf. A229545, A229621, A007953.
%K nonn,base
%O 1,2
%A _Derek Orr_, Jun 29 2014
%E a(27)-a(32) from _Michel Marcus_, Jun 30 2014
%E a(33)-a(39) from _Chai Wah Wu_, Aug 24 2015