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”).
%I #6 May 03 2022 23:52:09
%S 4,8,12,16,20,24,28,32,36,40,45,49,53,57,61,65,69,73,77,81,86,90,94,
%T 98,102,106,110,114,118,122,127,131,135,139,143,147,151,155,159,163,
%U 168,172,176,180,184,188,192,196,200,204,209,213,217,221,225,229,233
%N Beatty sequence for (3/2)(1+sqrt(3)).
%H <a href="/index/Be#Beatty">Index entries for sequences related to Beatty sequences</a>
%F a(n) = floor((3/2)*(1+sqrt(3))*n).
%t z = 200; r = (3/2) (1 + Sqrt[3]); s = r/(r - 1);
%t Table[Floor[n r], {n, 1, z}] (* A352674 *)
%t Table[Floor[n s], {n, 1, z}] (* A352675 *)
%Y Cf. A352672, A352675 (complement), A352676.
%K nonn
%O 1,1
%A _Clark Kimberling_, Mar 26 2022