OFFSET
1,1
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..1000
EXAMPLE
2152 and 2512 are both multiples of 8.
MATHEMATICA
Select[8*Range[700], Divisible[IntegerReverse[#], 8]&] (* Requires Mathematica version 10 or later *) (* Harvey P. Dale, Sep 18 2016 *)
PROG
(ARIBAS): n := 8; stop := 4200; m := n; while m < stop do rev := int_reverse(m); if rev mod n = 0 then write(m, " "); end; inc(m, n); end;
CROSSREFS
KEYWORD
nonn,base,easy
AUTHOR
Amarnath Murthy, Jul 01 2001
EXTENSIONS
Corrected and extended by Dean Hickerson and Klaus Brockhaus, Jul 06, 2001
STATUS
approved