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

A024585
a(n) = Sum_{k=1..n} [ 1/{k*Pi} ], where {x} := x - [ x ].
2
7, 10, 12, 13, 14, 15, 16, 23, 26, 28, 29, 30, 31, 32, 40, 43, 45, 46, 47, 48, 49, 57, 60, 62, 63, 64, 65, 66, 75, 79, 81, 82, 83, 84, 85, 95, 99, 101, 102, 103, 104, 105, 116, 120, 122, 123, 124, 125, 126, 138, 142, 144, 145, 146, 147, 148, 162, 166, 168, 170, 171, 172, 173, 189
OFFSET
1,1
LINKS
MATHEMATICA
Table[Sum[Floor[1/FractionalPart[k*Pi]], {k, n}], {n, 100}] (* Clark Kimberling, Aug 18 2012 *)
PROG
(PARI) a(n) = sum(k=1, n, floor(1/frac((k*Pi)))); \\ Michel Marcus, Jul 17 2019
CROSSREFS
Cf. A024586. Partial sums of A024584.
Sequence in context: A107018 A247868 A048792 * A190482 A128783 A024586
KEYWORD
nonn
STATUS
approved