A131613
Numbers k such that the decimal expansion of 3^k contains no 9.
Original entry on oeis.org
0, 1, 3, 4, 5, 7, 8, 11, 12, 16, 19, 20, 21, 29, 32, 56
Offset: 1
-
[n: n in [0..1000] | not 9 in Intseq(3^n) ]; // Vincenzo Librandi, May 06 2015
-
Join[{0}, Select[ Range@10000, FreeQ[ IntegerDigits[3^# ], 9] &]]
A136291
Array read by rows: each row is a sequence of numbers k such that n^k does not contain the digit n.
Original entry on oeis.org
0, 2, 3, 4, 6, 12, 14, 16, 20, 22, 23, 26, 34, 35, 36, 39, 42, 46, 54, 64, 74, 83, 168, 0, 2, 3, 4, 6, 7, 8, 10, 11, 14, 19, 27, 28, 34, 40, 50, 55, 84, 0, 2, 4, 8, 12, 20, 0, 0, 0, 2, 3, 4, 7, 16, 22, 24, 39, 0, 2, 3, 4, 6, 7, 8, 26, 0, 2, 4, 6, 8, 10, 16, 28
Offset: 0
Each row is sequence of numbers k such that n^k does not contain the digit n (all rows probably finite, checked up to k=10^4), n=2..9:
0,2,3,4,6,12,14,16,20,22,23,26,34,35,36,39,42,46,54,64,74,83,168 (A034293)
0,2,3,4,6,7,8,10,11,14,19,27,28,34,40,50,55,84 (A131629)
0,2,4,8,12,20
0,
0,
0,2,3,4,7,16,22,24,39
0,2,3,4,6,7,8,26
0,2,4,6,8,10,16,28.
A185186
Numbers divisible by at least one of their digits other than 1.
Original entry on oeis.org
2, 3, 4, 5, 6, 7, 8, 9, 12, 15, 20, 22, 24, 25, 26, 28, 30, 32, 33, 35, 36, 39, 40, 42, 44, 45, 48, 50, 52, 55, 60, 62, 63, 64, 65, 66, 70, 72, 75, 77, 80, 82, 84, 85, 88, 90, 92, 93, 95, 96, 99, 102, 104, 105, 112, 115, 120, 122, 123, 124, 125, 126, 128, 132
Offset: 1
-
digDivQ[n_] := AnyTrue[IntegerDigits[n], # > 1 && Mod[n, #] == 0 &]; Select[Range[200], digDivQ] (* Giovanni Resta, May 27 2017 *)
-
is(n) = my(d = vecsort(digits(n), , 8), t = 1); while(t<=#d&&d[t] < 2, t++); sum(i=t, #d, n%d[i]==0) > 0 \\ David A. Corneth, May 27 2017
A378557
Powers of 3 that do not contain the digit 3.
Original entry on oeis.org
1, 9, 27, 81, 729, 2187, 6561, 59049, 177147, 4782969, 1162261467, 7625597484987, 22876792454961, 16677181699666569, 12157665459056928801, 717897987691852588770249, 174449211009120179071170507, 11972515182562019788602740026717047105681
Offset: 1
Showing 1-4 of 4 results.
Comments