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

A288625
Positions of 0 in A288375; complement of A283794.
3
2, 3, 5, 7, 8, 11, 12, 14, 17, 18, 20, 22, 23, 27, 28, 30, 32, 33, 36, 37, 39, 43, 44, 46, 48, 49, 52, 53, 55, 58, 59, 61, 63, 64, 69, 70, 72, 74, 75, 78, 79, 81, 84, 85, 87, 89, 90, 94, 95, 97, 99, 100, 103, 104, 106, 111, 112, 114, 116, 117, 120, 121, 123
OFFSET
1,1
COMMENTS
Conjecture: a(n)/n -> 2, and 0 < 2 - a(n)/n < 1/2 for n >= 1.
LINKS
MATHEMATICA
s = {0, 0}; w[0] = StringJoin[Map[ToString, s]];
w[n_] := StringReplace[w[n - 1], {"00" -> "1000", "10" -> "1001"}]
TableForm[Table[w[n], {n, 0, 10}]]
st = ToCharacterCode[w[24]] - 48; (* A288375 *)
p0 = Flatten[Position[st, 0]]; (* A288625 *)
p1 = Flatten[Position[st, 1]]; (* A283794 *)
CROSSREFS
Sequence in context: A083028 A370867 A281015 * A189168 A182799 A112929
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Jun 24 2017
STATUS
approved