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

A287551
Positions of 1 in A287530; complement of A287531.
3
1, 5, 8, 9, 13, 19, 22, 24, 27, 28, 32, 36, 39, 40, 46, 47, 51, 57, 58, 64, 68, 71, 73, 76, 77, 81, 85, 88, 89, 93, 99, 102, 104, 107, 108, 114, 115, 121, 123, 126, 127, 131, 135, 138, 139, 145, 146, 152, 154, 157, 158, 164, 165, 169, 173, 176, 177, 181, 187
OFFSET
1,2
COMMENTS
Conjecture: a(n)/n -> 3.19..., and if m denotes this number, then -1 < m - a(n)/n) < 3 for n >= 1.
LINKS
MATHEMATICA
s = {0, 0}; w[0] = StringJoin[Map[ToString, s]];
w[n_] := StringReplace[w[n - 1], {"00" -> "1000", "10" -> "001"}]
Table[w[n], {n, 0, 8}]
st = ToCharacterCode[w[23]] - 48 (* A287530 *)
Flatten[Position[st, 0]] (* A287531 *)
Flatten[Position[st, 1]] (* A287551 *)
CROSSREFS
Sequence in context: A179832 A334919 A047616 * A375713 A231065 A314576
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Jun 18 2017
STATUS
approved