Problem 915 题目发布于 2024-11-02 翻译更新于 2024-11-29 Problem 915 Giant GCDsThe function s(n) is defined recursively for positive integers by s(1)=1 and s(n+1)=(s(n)−1)3+2 for n≥1. The sequence begins: s(1)=1,s(2)=2,s(3)=3,s(4)=10,…. For positive integers N, defineT(N)=∑a=1N∑b=1Ngcd(s(s(a)),s(s(b))).You are given T(3)=12, T(4)≡24881925 and T(100)≡14416749 both modulo 123456789. Find T(108). Give your answer modulo 123456789. 超大的最大公约数对正整数递归定义函数s(n)如下:s(1)=1;对n≥1,s(n+1)=(s(n)−1)3+2。该序列的最初几项分别是:s(1)=1,s(2)=2,s(3)=3,s(4)=10,…。 对正整数N,定义T(N)=∑a=1N∑b=1Ngcd(s(s(a)),s(s(b))).已知T(3)=12,T(4)≡24881925,T(100)≡14416749(对123456789取模)。 求T(108),并对123456789取余作为你的答案。
Gitalking ...