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.

A114341 Palindromes n such that n+(product of digits of n) gives a larger palindrome.

Original entry on oeis.org

1, 2, 3, 4, 252, 393, 525, 15451, 25152, 25252, 25352, 25452, 36563, 45154, 51415, 52125, 52225, 52325, 52425, 54145, 63536, 92529, 1455541, 1545451, 1569651, 1659561, 1954591, 1958591, 2255522, 2359532, 2525252, 2539352, 2552552
Offset: 1

Views

Author

Giovanni Resta, Feb 08 2006

Keywords

Comments

Each of the terms must contain no zeros. - Harvey P. Dale, Sep 18 2024

Examples

			393 + 3*9*3 = 474.
		

Programs

  • Mathematica
    Select[Range[256*10^4],FreeQ[IntegerDigits[#],0]&&AllTrue[#+{0,Times@@IntegerDigits[#]},PalindromeQ]&] (* Harvey P. Dale, Sep 18 2024 *)