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.

A062899 Number and its reversal are both multiples of 6.

Original entry on oeis.org

6, 24, 42, 48, 60, 66, 84, 204, 210, 216, 222, 228, 234, 240, 246, 252, 258, 264, 270, 276, 282, 288, 294, 402, 408, 414, 420, 426, 432, 438, 444, 450, 456, 462, 468, 474, 480, 486, 492, 498, 600, 606, 612, 618, 624, 630, 636, 642, 648, 654, 660, 666, 672
Offset: 1

Views

Author

Amarnath Murthy, Jul 01 2001

Keywords

Examples

			216 and 612 are both multiples of 6.
		

Programs

  • Mathematica
    Select[6*Range[130],Divisible[FromDigits[Reverse[IntegerDigits[#]]],6]&] (* Harvey P. Dale, May 09 2012 *)
    Select[Range[700],Mod[#,6]==Mod[IntegerReverse[#],6]==0&] (* Requires Mathematica version 10 or later *) (* Harvey P. Dale, Nov 25 2020 *)

Extensions

More terms from Larry Reeves (larryr(AT)acm.org), Jul 02 2001
Corrected by Harvey P. Dale, May 09 2012