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.

Showing 1-1 of 1 results.

A332970 Colombian palindromes.

Original entry on oeis.org

1, 3, 5, 7, 9, 121, 222, 323, 424, 525, 626, 727, 828, 929, 1111, 2112, 3113, 4114, 5115, 6116, 7117, 8118, 9119, 10401, 11211, 12921, 13731, 14541, 15351, 16161, 18881, 19691, 20402, 21212, 22922, 23732, 24542, 25352, 26162, 28882, 29692, 30403, 31213, 32923
Offset: 1

Views

Author

Bernard Schott, Mar 04 2020

Keywords

Comments

Palindromes that are not the sum of an integer and of the individual digits of this integer (see Wikipedia link).

Examples

			323 is a palindrome that cannot be written as the sum of any other natural number k and the digits of k, hence 323 that is Colombian number in base 10 is a term.
333 is a palindrome but 333 = 324 + 3 + 2 + 4, hence 333 that is not a self number in base 10 is not a term.
		

Crossrefs

Intersection of A002113 (palindromes) and A003052 (Colombians).
Complement of A332240 relative to A002113.

Programs

  • Mathematica
    n = 33000; Select[Complement[Range[n], Union @ Table[Plus @@ IntegerDigits[k] + k, {k, 1, n}]], PalindromeQ] (* Amiram Eldar, Mar 04 2020 *)

Extensions

More terms from Amiram Eldar, Mar 04 2020
Showing 1-1 of 1 results.