OFFSET
1,1
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..1000
EXAMPLE
1479 and 9741 are both multiples of 17.
MATHEMATICA
Select[Range[16000], !PalindromeQ[#]&&Divisible[#, 17]&&Divisible[ IntegerReverse[ #], 17]&] (* Requires Mathematica version 10 or later *) (* Harvey P. Dale, Jul 04 2017 *)
Select[Range[0, 16000, 17], !PalindromeQ[#]&&Mod[IntegerReverse[#], 17]==0&] (* Harvey P. Dale, Dec 20 2024 *)
CROSSREFS
KEYWORD
nonn,base,easy
AUTHOR
Amarnath Murthy, Jul 01 2001
EXTENSIONS
More terms from Erich Friedman, Jul 02 2001
STATUS
approved