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

A285260
Positions of 1 in A285258; complement of A285259.
3
1, 4, 5, 8, 9, 11, 14, 15, 17, 20, 21, 23, 25, 28, 29, 32, 33, 35, 37, 40, 41, 44, 45, 47, 50, 51, 53, 56, 57, 59, 61, 64, 65, 68, 69, 71, 73, 76, 77, 80, 81, 83, 86, 87, 89, 91, 94, 95, 98, 99, 101, 104, 105, 107, 110, 111, 113, 115, 118, 119, 122, 123, 125
OFFSET
1,2
COMMENTS
Conjecture: 2n - a(n) is in {0,1} for n>=1.
See the comments of A285250 for a proof of this conjecture. - Michel Dekking, Oct 07 2020
LINKS
EXAMPLE
As a word, A285258 = 10011001101..., in which 1 is in positions 1,4,5,8,9,11,...
MATHEMATICA
s = Nest[Flatten[# /. {0 -> {1, 0}, 1 -> {0, 1, 1, 0}}] &, {0}, 11]; (* A285258 *)
Flatten[Position[s, 0]]; (* A285259 *)
Flatten[Position[s, 1]]; (* A285260 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Apr 24 2017
STATUS
approved