A088401 Duplicate of A077491.
5, 1, 6, 2, 7, 3, 8, 4, 9, 14, 19, 24, 29, 34, 39, 44, 49, 99, 149, 199, 249, 299, 349, 399
Offset: 1
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.
t={}; Do[i=2; While[Total[IntegerDigits[i]]!=n,i=i+2]; AppendTo[t,i],{n,48}]; t (* Jayanta Basu, May 18 2013 *)
a(n) = {my(k = 2); while(sumdigits(k) != n, k+=2); k;} \\ Michel Marcus, Mar 18 2016