0%

Problem 915


Problem 915


Giant GCDs

The function s(n) is defined recursively for positive integers by s(1)=1 and s(n+1)=(s(n)1)3+2 for n1.

The sequence begins: s(1)=1,s(2)=2,s(3)=3,s(4)=10,.

For positive integers N, define
T(N)=a=1Nb=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;对n1s(n+1)=(s(n)1)3+2

该序列的最初几项分别是:s(1)=1,s(2)=2,s(3)=3,s(4)=10,

对正整数N,定义
T(N)=a=1Nb=1Ngcd(s(s(a)),s(s(b))).
已知T(3)=12T(4)24881925T(100)14416749(对123456789取模)。

T(108),并对123456789取余作为你的答案。


Gitalking ...