OFFSET
1,2
LINKS
Harry J. Smith, Table of n, a(n) for n = 1..1000
EXAMPLE
2318 and 8132 are both multiples of 19.
MATHEMATICA
Select[Range[0, 15000, 19], Mod[IntegerReverse[#], 19]==0&] (* Requires Mathematica version 10 or later *) (* Harvey P. Dale, Jan 24 2021 *)
PROG
(ARIBAS): n := 19; stop := 15000; m := 0; while m < stop do rev := int_reverse(m); if rev mod n = 0 then write(m, " "); end; inc(m, n); end;
(PARI) { n=0; forstep (m=0, 10^9, 19, x=m; r=0; while (x>0, d=x-10*(x\10); x\=10; r=r*10 + d); if (r%19 == 0, write("b062907.txt", n++, " ", m); if (n==1000, break)) ) } \\ Harry J. Smith, Aug 12 2009
CROSSREFS
KEYWORD
nonn,base,easy
AUTHOR
Amarnath Murthy, Jul 01 2001
EXTENSIONS
Corrected and extended by Dean Hickerson, Jul 06 2001
STATUS
approved