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

A285143
Positions of 0 in A285142; complement of A285144.
3
2, 4, 5, 6, 8, 10, 11, 12, 14, 16, 18, 20, 21, 22, 24, 26, 27, 28, 30, 32, 33, 34, 36, 38, 39, 40, 42, 44, 46, 48, 49, 50, 52, 54, 55, 56, 58, 60, 62, 64, 65, 66, 68, 70, 71, 72, 74, 76, 77, 78, 80, 82, 83, 84, 86, 88, 90, 92, 93, 94, 96, 98, 99, 100, 102
OFFSET
1,1
COMMENTS
Conjecture: -1 < n*r - a(n) < 1 for n>=1, where r = (3 + sqrt(3))/3.
LINKS
EXAMPLE
As a word, A285142 = 1010001010..., in which 0 is in positions 2,4,5,6,8,...
MATHEMATICA
s = Nest[Flatten[# /. {0 -> {1, 0}, 1 -> {0, 0, 1, 0}}] &, {0}, 11]; (* A285142 *)
Flatten[Position[s, 0]]; (* A285143 *)
Flatten[Position[s, 1]]; (* A285144 *)
Position[SubstitutionSystem[{0->{1, 0}, 1->{0, 0, 1, 0}}, {0}, {5}][[1]], 0]// Flatten (* Harvey P. Dale, Jan 27 2022 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Apr 20 2017
STATUS
approved