login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A365101 Number of distinct residues of x^n (mod n^4), x=0..n^4-1. 6

%I #13 Aug 24 2023 02:42:22

%S 1,4,21,18,101,30,295,130,487,153,1211,170,2029,444,1919,1025,4625,

%T 732,6499,442,1881,1818,11639,1290,12501,3045,13123,2516,23549,1530,

%U 28831,8193,23009,6939,29795,4148,49285,9750,12863,3354,67241,1500,77659,10302,49187,17460,101615

%N Number of distinct residues of x^n (mod n^4), x=0..n^4-1.

%o (PARI) a(n) = #Set(vector(n^4, x, Mod(x-1,n^4)^n)); \\ _Michel Marcus_, Aug 22 2023

%o (Python)

%o def A365101(n): return len({pow(x,n,n**4) for x in range(n**4)}) # _Chai Wah Wu_, Aug 23 2023

%Y Cf. A195637, A365099, A365100, A365102, A023105, A046631, A365103, A365104.

%K nonn

%O 1,2

%A _Albert Mukovskiy_, Aug 21 2023

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified September 1 14:13 EDT 2024. Contains 375591 sequences. (Running on oeis4.)