0%

Problem 715


Problem 715


Sextuplet Norms

Let f(n) be the number of 6-tuples (x1,x2,x3,x4,x5,x6) such that:

  • All xi are integers with 0xi<n
  • gcd(x12+x22+x32+x42+x52+x62, n2)=1

Let G(n)=k=1nf(k)k2φ(k)
where φ(n) is Euler’s totient function.

For example, G(10)=3053 and G(105)157612967(mod1 000 000 007).

Find G(1012)mod1 000 000 007.


六元范数

f(n)为满足以下条件的6元组(x1,x2,x3,x4,x5,x6)的数目:

  • 所有xi均为0xi<n内的整数
  • gcd(x12+x22+x32+x42+x52+x62, n2)=1

G(n)=k=1nf(k)k2φ(k)
其中φ(n)代表欧拉总计函数。

例如,G(10)=3053G(105)157612967(mod1 000 000 007)

G(1012)mod1 000 000 007


Gitalking ...