A065118 Numbers which are 19 times the sum of their digits.
114, 133, 152, 171, 190, 209, 228, 247, 266, 285, 399
Offset: 0
Examples
114 = 19*(1+1+4), 133 = 19*(1+3+3) etc.
Crossrefs
Cf. A037478.
Programs
-
Mathematica
Select[Range[400],#==19*Total[IntegerDigits[#]]&] (* Harvey P. Dale, Feb 17 2018 *)
Comments