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!)
A289175 Positions of 0 in A289174; complement of A289176. 3
1, 2, 4, 5, 9, 10, 12, 16, 17, 19, 20, 22, 26, 27, 28, 29, 31, 32, 37, 40, 41, 43, 45, 46, 47, 48, 50, 54, 58, 62, 63, 65, 66, 67, 68, 70, 71, 72, 74, 75, 80, 85, 90, 94, 95, 96, 97, 99, 100, 101, 103, 104, 107, 108, 110, 111, 115, 116, 119, 125, 131, 136 (list; graph; refs; listen; history; text; internal format)
OFFSET

1,2

COMMENTS

Conjecture: a(n)/n -> 2.2..., and if m denotes this number, then -1 < m - a(n)/n < m - 1 for n >= 1.

LINKS

Clark Kimberling, Table of n, a(n) for n = 1..10000

MATHEMATICA

z = 11; (* number of iterates *)

s = {0, 0}; w[0] = StringJoin[Map[ToString, s]];

w[n_] := StringReplace[w[n - 1], {"00" -> "0010", "01" -> "100", "10" -> "011"}]

TableForm[Table[w[n], {n, 0, 10}]]

st = ToCharacterCode[w[z]] - 48 (* A289174 *)

Flatten[Position[st, 0]] (* A289175 *)

Flatten[Position[st, 1]] (* A289176 *)

CROSSREFS

Cf. A289174, A289176, A289177.

Sequence in context: A047613 A036795 A307563 * A274693 A024618 A089221

Adjacent sequences: A289172 A289173 A289174 * A289176 A289177 A289178

KEYWORD

nonn,easy

AUTHOR

Clark Kimberling, Jun 29 2017

STATUS

approved

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 March 20 22:57 EDT 2023. Contains 361392 sequences. (Running on oeis4.)