0%

Problem 834


Problem 834


Add and Divide

A sequence is created by starting with a positive integer n and incrementing by (n+m) at the mth step. If n=10, the resulting sequence will be 21,33,46,60,75,91,108,126,.

Let S(n) be the set of indices m, for which the mth term in the sequence is divisible by (n+m).

For example, S(10)=5,8,20,35,80.

Define T(n) to be the sum of the indices in S(n). For example, T(10)=148 and T(102)=21828.

Let U(N)=n=3NT(n). You are given, U(102)=612572.

Find U(1234567).


相加与整除

构造如下数列:选择任意正整数n,在第m步时给当前的整数增加(n+m)并作为数列的第m项。例如,若n=10,则构造的数列为21,33,46,60,75,91,108,126,

集合S(n)包含所有满足下列条件的下标m:数列的第m项能够被(n+m)整除。

例如,S(10)=5,8,20,35,80

T(n)S(n)中所有下标之和。例如,T(10)=148T(102)=21828

U(N)=n=3NT(n)。已知U(102)=612572

U(1234567)


Gitalking ...