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”).

A288993
Positions of 1 in A288991; complement of A288992.
3
3, 10, 14, 18, 21, 25, 28, 32, 35, 42, 49, 52, 56, 59, 66, 70, 74, 77, 81, 85, 92, 95, 99, 102, 109, 113, 117, 120, 124, 127, 131, 134, 141, 148, 155, 159, 163, 166, 173, 180, 183, 187, 191, 198, 205, 212, 215, 219, 222, 229, 236, 239, 243, 247, 254, 258
OFFSET
1,1
COMMENTS
Conjecture: a(n)/n -> 4.56... and if m denotes this number, then -1 < m - a(n)/n < 2 for n >= 1.
LINKS
MATHEMATICA
z = 10; (* number of iterates *)
s = {0, 0}; w[0] = StringJoin[Map[ToString, s]];
w[n_] := StringReplace[w[n - 1], {"00" -> "0010", "01" -> "001", "10" -> "000"}]
TableForm[Table[w[n], {n, 0, 10}]]
st = ToCharacterCode[w[z]] - 48 (* A288991 *)
Flatten[Position[st, 0]] (* A288992 *)
Flatten[Position[st, 1]] (* A288993 *)
CROSSREFS
Sequence in context: A289106 A289018 A316672 * A190706 A146309 A288169
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Jun 25 2017
STATUS
approved