A092452 Numbers that either contain the digit 3 or are divisible by 3.
0, 3, 6, 9, 12, 13, 15, 18, 21, 23, 24, 27, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 42, 43, 45, 48, 51, 53, 54, 57, 60, 63, 66, 69, 72, 73, 75, 78, 81, 83, 84, 87, 90, 93, 96, 99, 102, 103, 105, 108, 111, 113, 114, 117, 120, 123, 126, 129, 130, 131, 132, 133, 134, 135, 136, 137
Offset: 0
Links
- Vincenzo Librandi, Table of n, a(n) for n = 0..2000
Programs
-
Mathematica
Select[Range[0, 150], Mod[#, 3] == 0||MemberQ[IntegerDigits[#], 3] &] (* Vincenzo Librandi, Jul 19 2016 *)
Extensions
More terms from Mohammed Bouayoun (bouyao(AT)wanadoo.fr), Mar 25 2004
Added missing term 133 by Vincenzo Librandi, Jul 19 2016