cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A206332 Complement of A092754.

This page as a plain text file.
%I A206332 #32 Aug 15 2021 15:07:10
%S A206332 2,5,6,11,12,13,14,23,24,25,26,27,28,29,30,47,48,49,50,51,52,53,54,55,
%T A206332 56,57,58,59,60,61,62,95,96,97,98,99,100,101,102,103,104,105,106,107,
%U A206332 108,109,110,111,112,113,114,115,116,117,118,119,120,121,122
%N A206332 Complement of A092754.
%C A206332 Conjecture: these are the positions words in A076478 that start with 0 and end with 1. - _Clark Kimberling_, Jul 14 2021
%H A206332 Reinhard Zumkeller, <a href="/A206332/b206332.txt">Table of n, a(n) for n = 1..10000</a>
%F A206332 a(n) = A004760(n+2) - 1. - _Rémy Sigrist_, May 05 2019
%F A206332 a(n) = A004755(n) - 1. - _Kevin Ryde_, Jun 19 2021
%o A206332 (Haskell)
%o A206332 a206332 n = a206332_list !! (n-1)
%o A206332 a206332_list = compl [1..] a092754_list where
%o A206332    compl (u:us) vs'@(v:vs) | u == v = compl us vs
%o A206332                            | u /= v = u : compl us vs'
%o A206332 (PARI) a(n) = n + 2<<logint(n,2) - 1; \\ _Kevin Ryde_, Jun 19 2021
%Y A206332 Cf. A004755, A004760, A092754 (complement).
%K A206332 easy,nonn
%O A206332 1,1
%A A206332 _Reinhard Zumkeller_, May 07 2012