login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A062907 Numbers k such that k and its reversal are both multiples of 19. 4
0, 171, 323, 494, 646, 969, 1710, 1881, 2166, 2318, 2489, 3230, 3553, 3705, 3876, 4940, 5073, 5225, 5396, 5548, 6460, 6612, 6783, 6935, 7068, 8132, 8455, 8607, 8778, 9690, 9842, 11134, 11457, 11609, 12521, 12692, 12844, 13129, 14041, 14364, 14516 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
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
Sequence in context: A120819 A115078 A183996 * A266315 A116459 A185610
KEYWORD
nonn,base,easy
AUTHOR
Amarnath Murthy, Jul 01 2001
EXTENSIONS
Corrected and extended by Dean Hickerson, Jul 06 2001
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 01:35 EDT 2024. Contains 371964 sequences. (Running on oeis4.)