A179082 Even numbers having an even sum of digits in their decimal representation.
0, 2, 4, 6, 8, 20, 22, 24, 26, 28, 40, 42, 44, 46, 48, 60, 62, 64, 66, 68, 80, 82, 84, 86, 88, 110, 112, 114, 116, 118, 130, 132, 134, 136, 138, 150, 152, 154, 156, 158, 170, 172, 174, 176, 178, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 220, 222, 224, 226
Offset: 1
Links
Programs
-
Mathematica
Select[Range[0,250,2],EvenQ[Total[IntegerDigits[#]]]&] (* Harvey P. Dale, Mar 19 2012 *)
Comments