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

A288522
Positions of 1 in A288520; complement of A288521.
3
3, 6, 9, 12, 14, 16, 19, 21, 23, 26, 28, 30, 34, 38, 41, 43, 45, 49, 53, 56, 58, 60, 64, 68, 72, 75, 78, 82, 85, 88, 91, 93, 95, 99, 103, 107, 110, 113, 117, 120, 123, 126, 128, 130, 134, 138, 142, 145, 148, 152, 155, 158, 162, 165, 168, 171, 173, 175, 178
OFFSET
1,1
COMMENTS
Conjecture: a(n)/n -> 2.91..., and if m denotes this number, then -1 < m - a(n)/n < 1 for n >= 1.
LINKS
MATHEMATICA
s = {0, 0}; w[0] = StringJoin[Map[ToString, s]];
w[n_] := StringReplace[w[n - 1], {"00" -> "0101", "10" -> "010"}]
Table[w[n], {n, 0, 8}]
st = ToCharacterCode[w[18]] - 48 (* A288520 *)
Flatten[Position[st, 0]] (* A288521 *)
Flatten[Position[st, 1]] (* A288522 *)
CROSSREFS
Sequence in context: A102014 A337091 A168045 * A226894 A359213 A091780
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Jun 13 2017
STATUS
approved