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

A194168
Partial sums of A194167.
2
0, 0, 0, 1, 2, 4, 7, 11, 15, 19, 23, 28, 33, 39, 46, 54, 62, 70, 78, 86, 95, 104, 114, 125, 137, 149, 161, 173, 186, 199, 213, 228, 244, 260, 276, 292, 308, 325, 343, 361, 380, 400, 420, 440, 461, 482, 504, 526, 549, 573, 597, 621, 645, 670, 695, 721, 748
OFFSET
1,5
MATHEMATICA
r=1/2+GoldenRatio;
a[n_]:=Floor[Sum[FractionalPart[k*r], {k, 1, n}]]
Table[a[n], {n, 1, 90}] (* A194167 *)
s[n_]:=Sum[a[k], {k, 1, n}]
Table[s[n], {n, 1, 100}] (* A194168 *)
CROSSREFS
Cf. A194167.
Sequence in context: A062467 A250621 A003068 * A347763 A198759 A078617
KEYWORD
nonn
AUTHOR
Clark Kimberling, Aug 18 2011
STATUS
approved