cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A062900 Number and its reversal are both multiples of 8.

Original entry on oeis.org

8, 80, 88, 232, 272, 424, 464, 616, 656, 696, 800, 808, 840, 848, 880, 888, 2112, 2136, 2152, 2176, 2192, 2304, 2320, 2328, 2344, 2360, 2368, 2384, 2512, 2536, 2552, 2576, 2592, 2704, 2720, 2728, 2744, 2760, 2768, 2784, 2912, 2936, 2952, 2976, 2992, 4016, 4032, 4056, 4072, 4096
Offset: 1

Views

Author

Amarnath Murthy, Jul 01 2001

Keywords

Examples

			2152 and 2512 are both multiples of 8.
		

Programs

  • 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;
  • Mathematica
    Select[8*Range[700],Divisible[IntegerReverse[#],8]&] (* Requires Mathematica version 10 or later *) (* Harvey P. Dale, Sep 18 2016 *)

Extensions

Corrected and extended by Dean Hickerson and Klaus Brockhaus, Jul 06 2001