%I #15 Jun 26 2025 01:20:57
%S 2,8,17,26,32,41,56,65,71,80,89,95,104,110,119,128,134,143,158,167,
%T 173,182,191,197,206,221,230,236,245,260,269,275,284,293,299,308,323,
%U 332,338,347,356,362,371,377,386,395,401,410,425,434,440,449,458,464
%N Numbers k such that T(k, 1) mod 3 = 1 and T(k, 2) mod 3 = 1, where T is the Wythoff array (A035513).
%C This is one of 9 sets that partition the positive integers; see the Jun 04 2025 comment in A035513.
%e (Row 8 of T) = (19,31,50,81,...).
%e ((Row 8 of T) mod 3) = (1,1,2,0,...), so 8 is in the list.
%t w[n_] := {Floor[n*GoldenRatio] + n - 1, 2*Floor[n*GoldenRatio] + n - 1}
%t t = Table[Mod[w[n], 3], {n, 1, 500}];
%t Flatten[Position[t, {1, 1}]] (* A384601 *)
%t Flatten[Position[t, {1, 2}]] (* A384602 *)
%Y Cf. A035513, A384602.
%K nonn
%O 1,1
%A _Clark Kimberling_, Jun 05 2025