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 #17 Sep 08 2022 08:45:50
%S 3,7,10,14,18,21,25,28,32,36,39,43,46,50,54,57,61,64,68,72,75,79,82,
%T 86,90,93,97,100,104,108,111,115,118,122,126,129,133,137,140,144,147,
%U 151,155,158,162,165,169,173,176,180,183,187,191,194,198,201,205
%N Beatty sequence for sqrt(13).
%H Vincenzo Librandi, <a href="/A171983/b171983.txt">Table of n, a(n) for n = 1..1000</a>
%F a(n) = floor(n*sqrt(13)). - _Jon E. Schoenfield_, Jun 18 2010
%t f[n_]: = Floor[n Sqrt[13]]; Array[f, 80, 1] (* _Vincenzo Librandi_, Aug 01 2013 *)
%o (Magma) [Floor(n*Sqrt(13)): n in [1..80]]; // _Vincenzo Librandi_, Aug 01 2013
%Y Cf. A010470.
%K nonn,easy
%O 1,1
%A _Vincenzo Librandi_, Jan 21 2010