OFFSET
1,1
COMMENTS
Conjecture: these are the positions words in A076478 that start with 0 and end with 1. - Clark Kimberling, Jul 14 2021
LINKS
Reinhard Zumkeller, Table of n, a(n) for n = 1..10000
FORMULA
a(n) = A004760(n+2) - 1. - Rémy Sigrist, May 05 2019
a(n) = A004755(n) - 1. - Kevin Ryde, Jun 19 2021
PROG
(Haskell)
a206332 n = a206332_list !! (n-1)
a206332_list = compl [1..] a092754_list where
compl (u:us) vs'@(v:vs) | u == v = compl us vs
| u /= v = u : compl us vs'
(PARI) a(n) = n + 2<<logint(n, 2) - 1; \\ Kevin Ryde, Jun 19 2021
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Reinhard Zumkeller, May 07 2012
STATUS
approved