cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A346221 Palindromes that are multiples of 11 and whose digit sum is also a multiple of 11.

This page as a plain text file.
%I A346221 #21 Aug 28 2022 23:15:52
%S A346221 2992,3883,4774,5665,6556,7447,8338,9229,10901,20702,30503,40304,
%T A346221 50105,70807,80608,90409,119911,128821,137731,146641,155551,164461,
%U A346221 173371,182281,191191,209902,218812,227722,236632,245542,254452,263362,272272,281182,290092,308803
%N A346221 Palindromes that are multiples of 11 and whose digit sum is also a multiple of 11.
%C A346221 Palindromes in A216995.
%e A346221 11 is a palindrome that is a multiple of 11, but its digit sum is not divisible by 11. Thus, 11 is not in this sequence.
%t A346221 Select[Range[400000], PalindromeQ[#] && IntegerQ[#/11] && IntegerQ[Total[IntegerDigits[#]]/11] &]
%o A346221 (Python)
%o A346221 from itertools import product
%o A346221 def sd(n): return sum(map(int, str(n)))
%o A346221 def pals(d, base=10): # all positive d-digit palindromes
%o A346221     digits = "".join(str(i) for i in range(base))
%o A346221     for p in product(digits, repeat=d//2):
%o A346221         if d > 1 and p[0] == "0": continue
%o A346221         left = "".join(p); right = left[::-1]
%o A346221         for mid in [[""], digits][d%2]:
%o A346221             t = int(left + mid + right)
%o A346221             if t > 0: yield t
%o A346221 def ok(pal): return pal%11 == 0 and sd(pal)%11 == 0
%o A346221 print([p for d in range(1, 7) for p in pals(d) if ok(p)]) # _Michael S. Branicky_, Jul 11 2021
%o A346221 (PARI) isok(m) = my(d=digits(m)); (Vecrev(d) == d) && !(m % 11) && !(vecsum(d) % 11); \\ _Michel Marcus_, Aug 06 2021
%Y A346221 Cf. A002113, A083513, A166311 (halves of even length terms), A216995.
%K A346221 nonn,base
%O A346221 1,1
%A A346221 _Tanya Khovanova_, Jul 11 2021