OFFSET
1,2
COMMENTS
Excluding zeros, these are the indices of letters b and c in the tribonacci word.
The complement of A003144: the indices of the letter a in the tribonacci word. These numbers are doubled in column -1 in the extended Trithoff array.
Also integers with "even" lazy tribonacci representation A352103, and first column of A385436. - A.H.M. Smeets, Jun 29 2025
LINKS
A.H.M. Smeets, Table of n, a(n) for n = 1..20000
PROG
(Python)
def ToDual_111_Zeck(n):
if n == 0:
return "0"
f0, f1, f2, sf = 1, 0, 0, 0
while n > sf:
f0, f1, f2 = f0+f1+f2, f0, f1
sf += f0
r, s = sf-n, "1"
while f0 > 1:
f0, f1, f2 = f1, f2, f0-f1-f2
r, s = r%f0, s+str(1-r//f0)
return s
n, a = 0, 0
while n < 70:
s = ToDual_111_Zeck(a)
if s[len(s)-1] == "0": # == even
n += 1
print(a, end = ", ")
a += 1 # A.H.M. Smeets, Jun 28 2025
CROSSREFS
KEYWORD
nonn
AUTHOR
Tanya Khovanova and PRIMES STEP Senior group, May 04 2022
STATUS
approved
