OFFSET
1,1
EXAMPLE
24 and 42 are both multiples of 2.
MATHEMATICA
Select[Range[2, 296, 2], EvenQ[Last[x=Reverse[y=IntegerDigits[#]]]] && x!=y &] (* Jayanta Basu, May 17 2013 *)
PROG
(ARIBAS): n := 2; stop := 410; m := 0; while m < stop do rev := int_reverse(m); if m <> rev and rev mod n = 0 then write(m, " "); end; inc(m, n); end; .
(PARI) isok(m) = {if (!(m%2), my(r=fromdigits(Vecrev(digits(m)))); if ((r!=m) && !(r%2), print1(m, ", ")); ); } \\ Michel Marcus, Oct 10 2020
CROSSREFS
KEYWORD
nonn,base,easy
AUTHOR
Amarnath Murthy, Jul 01 2001
EXTENSIONS
More terms from Dean Hickerson, Jul 06, 2001
STATUS
approved