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

A284370
Positions of 0 in A284369; complement of A284371.
3
2, 3, 8, 9, 12, 13, 16, 17, 20, 21, 26, 27, 30, 31, 36, 37, 40, 41, 46, 47, 50, 51, 56, 57, 60, 61, 64, 65, 68, 69, 74, 75, 78, 79, 84, 85, 88, 89, 92, 93, 96, 97, 102, 103, 106, 107, 112, 113, 116, 117, 120, 121, 124, 125, 130, 131, 134, 135, 140, 141, 144
OFFSET
1,1
COMMENTS
Conjecture: -3 < n*r - a(n) < 4 for n >= 1, where r = (3+sqrt(3))/2.
LINKS
EXAMPLE
The first 10 letters of the word in A284369 are 1001111001, in which the positions of 0 are 2,3,8,9.
MATHEMATICA
s = Nest[Flatten[# /. {0 -> {1}, 1 -> {1, 0, 0, 1}}] &, {0}, 9]; (* A284369 *)
Flatten[Position[s, 0]]; (* A284370 *)
Flatten[Position[s, 1]]; (* A284371 *)
CROSSREFS
Sequence in context: A290150 A237037 A283618 * A273783 A075190 A224225
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Mar 26 2017
STATUS
approved