A062899 Number and its reversal are both multiples of 6.
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
Examples
216 and 612 are both multiples of 6.
Links
- Harvey P. Dale, Table of n, a(n) for n = 1..1000
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