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!)
A231563 a(n) = f(1)^n + ... + f(n)^n (mod n) where f(i)=i if gcd(i,n)=1 and f(i)=0 otherwise. 5

%I #22 Feb 11 2021 11:16:41

%S 0,1,0,2,0,2,0,4,0,0,0,4,0,0,0,8,0,6,0,8,0,0,0,8,0,0,0,0,0,20,0,16,0,

%T 0,0,12,0,0,0,16,0,12,0,0,0,0,0,16,0,0,0,0,0,18,0,0,0,0,0,16,0,0,0,32,

%U 0,44,0,0,0,0,0,24,0,0,0,0,0,0,0,32,0,0

%N a(n) = f(1)^n + ... + f(n)^n (mod n) where f(i)=i if gcd(i,n)=1 and f(i)=0 otherwise.

%H Vincenzo Librandi, <a href="/A231563/b231563.txt">Table of n, a(n) for n = 1..5000</a>

%F a(n) = A308481(n) mod n. - _Seiichi Manyama_, Feb 11 2021

%t S[n_] := Mod[Sum[If[GCD[i, n] == 1, PowerMod[i, n, n], 0], {i, 1, n}], n]; Array[S,100]

%o (PARI) f(i, n) = if (gcd(i, n) == 1, i, 0);

%o a(n) = lift(sum(k=1, n, Mod(f(k, n), n)^n)); \\ _Michel Marcus_, Jul 16 2017

%Y Cf. A231564, A231565, A308481.

%K nonn

%O 1,4

%A _José María Grau Ribas_, Dec 09 2013

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 April 19 15:34 EDT 2024. Contains 371794 sequences. (Running on oeis4.)