OFFSET
1,1
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..2000
EXAMPLE
48 and 84 are both multiples of 6.
MATHEMATICA
Select[Range[6, 900, 6], !PalindromeQ[#]&&Mod[IntegerReverse[#], 6]==0&] (* Requires Mathematica version 10 or later *) (* Harvey P. Dale, Mar 22 2020 *)
PROG
(ARIBAS): n := 6; stop := 2020; 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; .
CROSSREFS
KEYWORD
nonn,base,easy
AUTHOR
Amarnath Murthy, Jul 01 2001
EXTENSIONS
More terms from Dean Hickerson, Jul 06, 2001
STATUS
approved