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.
%I A241176 #26 Feb 19 2020 10:38:38 %S A241176 0,2,4,6,8,11,13,15,17,19,23,25,27,29,31,33,35,37,39,41,45,47,49,51, %T A241176 53,55,57,59,61,63,67,69,71,73,75,77,79,81,83,85,89,91,93,95,97,99, %U A241176 111,113,115,117,119,121,143,165,187,221,223,225,227,229,231,243,265,287,321,333,335,337,339,341,343,365,387,421 %N A241176 Numbers n such that there is exactly one number m with m + (some digit of m) = n. %D A241176 Eric Angelini, Posting to Sequence Fans Mailing List, Apr 20 2014 %H A241176 Alois P. Heinz, <a href="/A241176/b241176.txt">Table of n, a(n) for n = 1..363</a> %e A241176 Since 10 = 5+5 = 10+0, there are two possibilities of writing 10 in the given way, therefore 10 is not in this list. %e A241176 For numbers in A241175 = {1, 3, 5, 7, 9, 21, 43, 65, 87}, there is NO way of writing them in the given form, therefore they are not in this list. %p A241176 See A241177. %t A241176 A241176[n_] := Module[{m, c = 0}, %t A241176 Do[c = c + Count[m + Union[IntegerDigits[m]], n], {m, 0, n}]; c]; %t A241176 Select[Range[0, 421], A241176[#] == 1 &] (* _Robert Price_, Mar 20 2019 *) %o A241176 (PARI) is(n)={sum(i=0, min(n, 9), setsearch(Set(digits(n-i)), i)>0)==1||n==0} \\ _M. F. Hasler_, Apr 26 2014 %Y A241176 Related sequences: A241173, A241174, A241175, A241176, A241177, A241178, A241179, A241180, A241181, A241182, A241183. %K A241176 nonn,base %O A241176 1,2 %A A241176 _N. J. A. Sloane_, Apr 23 2014 %E A241176 Example corrected by _M. F. Hasler_, Apr 26 2014