login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A210770
a(1) = 1, a(2) = 2; for n > 1, a(2*n+2) = smallest number not yet seen, a(2*n+1) = a(2*n) + a(2*n+2).
5
1, 2, 5, 3, 7, 4, 10, 6, 14, 8, 17, 9, 20, 11, 23, 12, 25, 13, 28, 15, 31, 16, 34, 18, 37, 19, 40, 21, 43, 22, 46, 24, 50, 26, 53, 27, 56, 29, 59, 30, 62, 32, 65, 33, 68, 35, 71, 36, 74, 38, 77, 39, 80, 41, 83, 42, 86, 44, 89, 45, 92, 47, 95, 48, 97, 49, 100
OFFSET
1,2
COMMENTS
Permutation of natural numbers with inverse A210771.
From Jeffrey Shallit, Jun 18 2021: (Start)
This sequence is "2-sychronized"; there is a 23-state finite automaton that recognizes the base-2 representations of n and a(n), in parallel.
It obeys the identities
a(4n+3) = a(2n+1) - a(4n) + 2 a(4n+2)
a(8n) = 2a(4n)
a(8n+1) = a(2n+1) + 3a(4n)
a(8n+2) = a(2n+1) + 2 a(4n) - a(4n+1) + a(4n+2)
a(8n+4) = a(2n+1) + a(4n+2)
a(8n+5) = 3a(2n+1) - a(4n) +2a(4n+2)
a(8n+6) = 2a(2n+1) - a(4n) + a(4n+2). (End)
FORMULA
a(2*n-1) = A022441(n-1); a(2*n) = A055562(n-1).
PROG
(Haskell)
import Data.List (delete)
a210770 n = a210770_list !! (n-1)
a210770_list = 1 : 2 : f 1 2 [3..] where
f u v (w:ws) = u' : w : f u' w (delete u' ws) where u' = v + w
(Python)
def aupton(terms):
alst, seen = [1, 2], {1, 2}
for n in range(2, terms, 2):
anp1 = alst[-1] + 1
while anp1 in seen: anp1 += 1
an = alst[n-1] + anp1
alst, seen = alst + [an, anp1], seen | {an, anp1}
return alst[:terms]
print(aupton(67)) # Michael S. Branicky, Jun 18 2021
CROSSREFS
Cf. A064736.
Sequence in context: A257906 A354575 A257983 * A338347 A227688 A358923
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Mar 25 2012
EXTENSIONS
Definition corrected by Jeffrey Shallit, Jun 18 2021
STATUS
approved