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.

A062287 Palindromic numbers with even digits.

Original entry on oeis.org

0, 2, 4, 6, 8, 22, 44, 66, 88, 202, 222, 242, 262, 282, 404, 424, 444, 464, 484, 606, 626, 646, 666, 686, 808, 828, 848, 868, 888, 2002, 2222, 2442, 2662, 2882, 4004, 4224, 4444, 4664, 4884, 6006, 6226, 6446, 6666, 6886, 8008, 8228, 8448, 8668
Offset: 1

Views

Author

Amarnath Murthy, Jun 18 2001

Keywords

Comments

Any of these numbers divided by 2 is also palindromic. - Giovanni Teofilatto, Feb 23 2012

Examples

			246848642 is a palindrome with all even digits hence is a member of this sequence.
		

Crossrefs

Subsequence of A002113.

Programs

  • Mathematica
    palindromicQ[n_, b_:10] := TrueQ[IntegerDigits[n, b] == Reverse[IntegerDigits[n, b]]]; Select[Range[2, 10^4, 2], palindromicQ[#] && Plus@@Drop[DigitCount[#], {2, 10, 2}] == 0 &] (* Alonso del Arte, Feb 23 2012 *)

Extensions

Corrected and extended by Dean Hickerson, Jul 10 2001