OFFSET
1,2
COMMENTS
Any of these numbers divided by 2 is also palindromic. - Giovanni Teofilatto, Feb 23 2012
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 1..1200
EXAMPLE
246848642 is a palindrome with all even digits hence is a member of this sequence.
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 *)
CROSSREFS
KEYWORD
nonn,base,easy
AUTHOR
Amarnath Murthy, Jun 18 2001
EXTENSIONS
Corrected and extended by Dean Hickerson, Jul 10, 2001
STATUS
approved