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

A194106
Sum{floor(j*sqrt(3)) : 1<=j<=n}; n-th partial sum of Beatty sequence for sqrt(3).
4
1, 4, 9, 15, 23, 33, 45, 58, 73, 90, 109, 129, 151, 175, 200, 227, 256, 287, 319, 353, 389, 427, 466, 507, 550, 595, 641, 689, 739, 790, 843, 898, 955, 1013, 1073, 1135, 1199, 1264, 1331, 1400, 1471, 1543, 1617, 1693, 1770, 1849, 1930, 2013, 2097
OFFSET
1,2
MATHEMATICA
c[n_] := Sum[Floor[j*Sqrt[3]], {j, 1, n}];
c = Table[c[n], {n, 1, 90}]
CROSSREFS
Cf. A194107, A194108, A194109, A022838 (Beatty sequence for sqrt(3)).
Sequence in context: A285283 A243536 A184005 * A004629 A348338 A065893
KEYWORD
nonn
AUTHOR
Clark Kimberling, Aug 15 2011
STATUS
approved