OFFSET
1,1
LINKS
Bruno Berselli, Table of n, a(n) for n = 1..1000
FORMULA
a(n) = 10*A094677(n).
EXAMPLE
a(38) = 3890 is a multiple of 10, and 3+8+9+0=20 is also a multiple of 10.
MATHEMATICA
Select[ Range[10, 4600, 10], Mod[ Total[ IntegerDigits[#]], 10] == 0 &] (* Jean-François Alcover, Oct 26 2012 *)
PROG
(Magma) [n: n in [10..4600 by 10] | IsZero(&+Intseq(n) mod 10)];
CROSSREFS
KEYWORD
nonn,base,easy
AUTHOR
Bruno Berselli, Oct 25 2012
STATUS
approved