A092457 Numbers that either contain the digit 9 or are divisible by 9.
0, 9, 18, 19, 27, 29, 36, 39, 45, 49, 54, 59, 63, 69, 72, 79, 81, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 108, 109, 117, 119, 126, 129, 135, 139, 144, 149, 153, 159, 162, 169, 171, 179, 180, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 207, 209, 216, 219
Offset: 0
Links
- Vincenzo Librandi, Table of n, a(n) for n = 0..1000
Programs
-
Mathematica
Select[Range[0, 300], Mod[#, 9] == 0||MemberQ[IntegerDigits[#], 9] &] (* Vincenzo Librandi, Jul 19 2016 *)
Extensions
More terms from Mohammed Bouayoun (bouyao(AT)wanadoo.fr), Mar 25 2004
Added missing term 199 by Vincenzo Librandi, Jul 19 2016