Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.
%I #15 Sep 30 2019 10:47:32
%S 4,5,10,11,16,17,22,23,28,29,34,39,40,45,46,51,52,57,58,63,64,68,69,
%T 74,75,80,81,86,87,92,93,98,99,103,104,109,110,115,116,121,122,127,
%U 128,133,134,138,139,144,145,150,151,156,157,162,163,168,169,173,174
%N Positions of 0's in {A327310(n) : n > 0}.
%C The positive integers are partitioned by A327311, A327312, and A327313.
%C Although a(n)/n->3, the sequence a(n)-3n appears to be unbounded.
%C Positive integers k such that A327310(k) = 0. - _Jianing Song_, Sep 30 2019
%H Clark Kimberling and Jianing Song, <a href="/A327311/b327311.txt">Table of n, a(n) for n = 1..10000</a>
%t r = Sqrt[8]; z = 300;
%t t = Table[Floor[3 n*r] - 3 Floor[n*r], {n, 1, z}] (* {A327310(n) : n > 0} *)
%t Flatten[Position[t, 0]] (* A327311 *)
%t Flatten[Position[t, 1]] (* A327312 *)
%t Flatten[Position[t, 2]] (* A327313 *)
%Y Cf. A327310, A327312, A327313.
%K nonn,easy
%O 1,1
%A _Clark Kimberling_, Sep 07 2019
%E Corrected by _Jianing Song_, Sep 30 2019