968. 5D Summation

Define

P(Xa,b,Xa,c,Xa,d,Xa,e,Xb,c,Xb,d,Xb,e,Xc,d,Xc,e,Xd,e)

as the sum of 2a3b5c7d11e over all quintuples of non-negative integers (a,b,c,d,e) such that the sum of each two of the five variables is restricted by a given value. In other words, a+bXa,b, a+dXa,d, b+eXb,e etc.

For example, P(2,2,2,2,2,2,2,2,2,2)=7120 and P(1,2,3,4,5,6,7,8,9,10)799809376(mod109+7).

Define a sequence A as follows:

Also define Q(n)=P(A10n,A10n+1,A10n+2,,A10n+9).

Find 0n<100Q(n). Give your answer modulo 109+7.

968. 五维求和

P(Xa,b,Xa,c,Xa,d,Xa,e,Xb,c,Xb,d,Xb,e,Xc,d,Xc,e,Xd,e)

为:所有满足

i,j{a,b,c,d,e},i+jXi,j

的非负整数五元组 (a,b,c,d,e)2a3b5c7d11e 之和。

例如,P(2,2,2,2,2,2,2,2,2,2)=7120P(1,2,3,4,5,6,7,8,9,10)799809376(mod109+7)

按如下规则定义序列 A

另记 Q(n)=P(A10n,A10n+1,A10n+2,,A10n+9).

0n<100Q(n)(109+7) 的值。


这个链接 回到源站。

这个链接 回到详细版题目目录。