952. Order Modulo Factorial

Given a prime p and a positive integer n<p, let R(p,n) be the multiplicative order of p modulo n!.
In other words, R(p,n) is the minimal positive integer r such that

pr1(modn!)

For example, R(7,4)=2 and R(109+7,12)=17280.

Find R(109+7,107). Give your answer modulo 109+7.

952. 模阶乘意义下的阶

给定质数 p 以及正整数 n<p,令 R(p,n) 为模 n! 意义下,p(乘法)阶。换句话说,R(p,n) 是满足 pr1(modn!) 的最小的正整数 r

例如,R(7,4)=2R(109+7,12)=17280

R(109+7,107)(109+7) 的值。


这个链接 回到源站。

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