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

A227912
Sum of all k from {1,...,n} such that the fractional part of n/k is contained in the closed interval [1/4, 3/4].
1
0, 0, 2, 3, 9, 4, 14, 14, 19, 28, 24, 29, 41, 51, 54, 49, 67, 74, 89, 87, 99, 110, 120, 125, 142, 154, 169, 178, 180, 211, 197, 223, 262, 261, 285, 270, 299, 323, 342, 371, 359, 374, 422, 434, 477, 454, 478, 493, 538, 566, 555, 628, 606, 663, 666, 676, 716
OFFSET
1,3
EXAMPLE
a(6) = 4, only k = 4 satisfies the condition frac(6/k) is an element of [1/4, 3/4].
PROG
(JavaScript)
for (i=1; i<50; i++) {
c=0;
for (j=1; j<=i; j++) {
v=Math.floor(i/j);
if (i/j-v>=0.25 && i/j-v<=0.75) c+=j;
}
document.write(c+", ");
;
}
CROSSREFS
Cf. A227913.
Sequence in context: A089206 A329568 A249824 * A229212 A210586 A202017
KEYWORD
nonn
AUTHOR
Jon Perry, Oct 13 2013
STATUS
approved