OFFSET
1,1
EXAMPLE
The sum of the fractions i/(i-2520) over 2521<=i<=j is integer for upper limits j=2521 up to j=2530, which define the first 10 values of the sequence, for example a(3) = 2521/(2521-2520) +2522/(2522-2520) +2523/(2523-2520) = 4623.
MATHEMATICA
lst={}; q=2520; s=0; Do[s+=n/(n-q); If[s==IntegerPart[s], AppendTo[lst, s]], {n, q+1, q+4!}]; lst
CROSSREFS
KEYWORD
nonn
AUTHOR
Vladimir Joseph Stephan Orlovsky, Sep 27 2008
EXTENSIONS
Rephrased definition. Changed offset to 1. Added example. - R. J. Mathar, Oct 01 2008
STATUS
approved