A337239 Numbers having at least one 7 in their representation in base 8.
7, 15, 23, 31, 39, 47, 55, 56, 57, 58, 59, 60, 61, 62, 63, 71, 79, 87, 95, 103, 111, 119, 120, 121, 122, 123, 124, 125, 126, 127, 135, 143, 151, 159, 167, 175, 183, 184, 185, 186, 187, 188, 189, 190, 191, 199, 207, 215, 223, 231, 239, 247, 248, 249, 250, 251, 252, 253, 254, 255
Offset: 1
Examples
54 is not in the sequence since it is 66_8 in base 8, but 55 is in the sequence since it is 67_8 in base 8.
Links
- François Marques, Table of n, a(n) for n = 1..10000
Crossrefs
Programs
-
Maple
seq(`if`(numboccur(7, convert(n, base, 8))>0, n, NULL), n=0..100);
-
Mathematica
Select[ Range[ 0, 100 ], (Count[ IntegerDigits[ #, 8 ], 7 ]>0)& ]
-
PARI
isok(m) = #select(x->(x==7), digits(m, 8)) >= 1;
-
Python
def A337239(n): def f(x): s = oct(x)[2:] l = s.find('7') if l >= 0: s = s[:l]+'6'*(len(s)-l) return n+int(s,7) m, k = n, f(n) while m != k: m, k = k, f(k) return m # Chai Wah Wu, Dec 04 2024
Comments