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

A283794
Positions of 1 in A288375; complement of A288625.
3
1, 4, 6, 9, 10, 13, 15, 16, 19, 21, 24, 25, 26, 29, 31, 34, 35, 38, 40, 41, 42, 45, 47, 50, 51, 54, 56, 57, 60, 62, 65, 66, 67, 68, 71, 73, 76, 77, 80, 82, 83, 86, 88, 91, 92, 93, 96, 98, 101, 102, 105, 107, 108, 109, 110, 113, 115, 118, 119, 122, 124, 125
OFFSET
1,2
COMMENTS
Conjecture: a(n)/n -> 2, and -1/4 < 2 - 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" -> "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: A123249 A171136 A189167 * A287003 A214068 A330182
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Jun 24 2017
STATUS
approved