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

Positions of 1 in A284527; complement of A284528.
3

%I #6 Apr 08 2017 09:45:12

%S 1,2,5,7,8,9,12,14,17,21,23,24,27,29,32,34,35,38,40,41,42,45,47,48,49,

%T 52,54,57,61,63,64,67,69,72,74,75,78,80,83,87,89,90,93,95,98,102,106,

%U 108,109,112,114,117,119,120,123,125,126,127,130,132,135,139

%N Positions of 1 in A284527; complement of A284528.

%C Conjecture: a(n)/n -> (1 + sqrt(13))/2.

%H Clark Kimberling, <a href="/A284529/b284529.txt">Table of n, a(n) for n = 1..10000</a>

%t s = Nest[Flatten[# /. {0 -> {1}, 1 -> {0, 0, 1, 0}}] &, {0}, 9] (* A284527 *)

%t Flatten[Position[s, 0]] (* A284528 *)

%t Flatten[Position[s, 1]] (* A284529 *)

%Y Cf. A284524, A284527, A284528.

%K nonn,easy

%O 1,2

%A _Clark Kimberling_, Apr 07 2017