login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A005713 Define strings S(0)=0, S(1)=11, S(n) = S(n-1)S(n-2); iterate. 5

%I #55 Mar 29 2023 14:51:27

%S 1,1,0,1,1,1,1,0,1,1,0,1,1,1,1,0,1,1,1,1,0,1,1,0,1,1,1,1,0,1,1,0,1,1,

%T 1,1,0,1,1,1,1,0,1,1,0,1,1,1,1,0,1,1,1,1,0,1,1,0,1,1,1,1,0,1,1,0,1,1,

%U 1,1,0,1,1,1,1,0,1,1,0,1,1,1,1,0,1,1,0,1,1,1,1,0,1

%N Define strings S(0)=0, S(1)=11, S(n) = S(n-1)S(n-2); iterate.

%C a(A035336(n)) = 0. - _Reinhard Zumkeller_, Dec 30 2011

%C a(n) = 1 - A123740(n). This can be seen as follows. Define words T(0)=0, T(1)=1, T(n) = T(n-1)T(n-2). Then T(infinity) is the binary complement of the infinite Fibonacci word A003849. Obviously S(n) is the [1->11] transform of T(n). The claim now follows from the observation (see Comments of A123740) that doubling the 0's in the infinite Fibonacci word A003849 gives A123740. - _Michel Dekking_, Oct 21 2018

%C From _Michel Dekking_, Oct 22 2018: (Start)

%C Here is a proof of Cloitre's (corrected) formula

%C a(n) = abs(A014677(n+1)).

%C Since abs(-1) = abs(1) = 1, one has to prove that A014677(k)=0 if and only if there is an n such that AB(n) = k (using that a(n) = 1 - A123740(n)). Now A014677 is the sequences of first differences of A001468, and the 0's in A014677 occur if and only if there occurs a block 22 in A001468, which is given by

%C A001468(n) = floor((n+1)*phi) - floor(n*phi), n >= 0.

%C But then

%C A001468(n) = A014675(n-1), n > 0.

%C The sequence A014675 is fixed point of the morphism 1->2, 2->21, which is alphabet equivalent to the morphism 1->12, 2->1, the classical Fibonacci morphism in standard form. This implies that the 22 blocks in A001468 occur at position n+1 in if and only if 3 occurs in the fixed point A270788 of the 3-symbol Fibonacci morphism at k, which happens if and only if there is an n such that AB(n)=k (see Formula of A270788). (End)

%H Reinhard Zumkeller, <a href="/A005713/b005713.txt">Table of n, a(n) for n = 0..10000</a>

%H R. K. Guy, <a href="/A005712/a005712.pdf">Letter to N. J. A. Sloane, 1987</a>

%H Jeffrey Shallit and Anatoly Zavyalov, <a href="https://arxiv.org/abs/2303.15203">Transduction of Automatic Sequences and Applications</a>, arXiv:2303.15203 [cs.FL], 2023, see p. 31.

%F From _Benoit Cloitre_, Apr 21 2003: (Start)

%F For n > 1, a(n-1) = floor(phi*ceiling(n/phi)) - ceiling(phi*floor(n/phi)) where phi=(1+sqrt(5))/2.

%F For n >= 0, a(n) = abs(A014677(n+1)). (End)

%e The infinite word is S(infinity) = 110111101101111011110110...

%t s[0] = {0}; s[1] = {1, 1}; s[n_] := s[n] = Join[s[n-1], s[n-2]]; s[10] (* _Jean-François Alcover_, May 15 2013 *)

%t nxt[{a_,b_}]:={b,Join[a,b]}; Drop[Nest[nxt,{{0},{1,1}},10][[1]],3] (* _Harvey P. Dale_, Jan 31 2019 *)

%o (PARI) a(n,f1,f2)=local(f3); for(i=3,n,f3=concat(f2,f1); f1=f2; f2=f3); f2

%o (PARI) printp(a(10,[ 0 ],[ 1,1 ])) \\ Would give S(10). Sequence is S(infinity).

%o (Haskell)

%o a005713 n = a005713_list !! n

%o a005713_list = 1 : 1 : concat (sibb [0] [1,1]) where

%o sibb xs ys = zs : sibb ys zs where zs = xs ++ ys

%o -- _Reinhard Zumkeller_, Dec 30 2011

%Y Cf. A005614, A003849.

%Y Cf. A001468, A014675, A014677, A123740, A270788.

%K nonn,easy,nice

%O 0,1

%A _N. J. A. Sloane_

%E Corrected by _Michael Somos_

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 17 22:23 EDT 2024. Contains 371767 sequences. (Running on oeis4.)