OFFSET
1,1
LINKS
Chai Wah Wu, Table of n, a(n) for n = 1..10000
EXAMPLE
43 is 1121 in base 3 and 223 in base 4; it uses the two largest digits in the two bases and is therefore a term.
Similarly 238 is 22211 in base 3 and 3232 in base 4 so it is also a term.
PROG
(Python)
from gmpy2 import digits
def f1(n):
s = digits(n, 3)
m = len(s)
for i in range(m):
if s[i] == '0':
return(int(s[:i]+'1'*(m-i), 3))
return n
def f2(n):
s = digits(n, 4)
m = len(s)
for i in range(m):
if s[i] in ['0', '1']:
return(int(s[:i]+'2'*(m-i), 4))
return n
A262963_list = []
n = 1
for i in range(10**4):
m = f2(f1(n))
while m != n:
n, m = m, f2(f1(m))
A262963_list.append(m)
n += 1 # Chai Wah Wu, Oct 30 2015
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Robin Powell, Oct 05 2015
STATUS
approved