[go: up one dir, main page]

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

A283964
Positions of 0 in A283963; complement of A283965.
3
2, 4, 7, 9, 12, 14, 16, 18, 21, 23, 26, 28, 30, 32, 35, 37, 40, 42, 45, 47, 50, 52, 54, 56, 59, 61, 64, 66, 68, 70, 73, 75, 78, 80, 83, 85, 88, 90, 92, 94, 97, 99, 102, 104, 106, 108, 111, 113, 116, 118, 120, 122, 125, 127, 130, 132, 134, 136, 139, 141, 144
OFFSET
1,1
COMMENTS
Conjecture: -1 < n*r - a(n) < 2 for n >= 1, where r = (3+sqrt(3))/2.
LINKS
EXAMPLE
The first 10 letters of the word in A282963 are 1010110101, in which the positions of 0 are 2,4,7,9.
MATHEMATICA
s = Nest[Flatten[# /. {0 -> {1}, 1 -> {1, 0, 1, 0}}] &, {0}, 10] (* A283963 *)
Flatten[Position[s, 0]] (* A283964 *)
Flatten[Position[s, 1]] (* A283965 *)
CROSSREFS
Sequence in context: A239009 A287074 A304501 * A330085 A175884 A003151
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Mar 25 2017
STATUS
approved