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!)
A206825 Number of solutions (n,k) of k^4=n^4 (mod n), where 1<=k<n. 3
0, 0, 1, 0, 0, 0, 3, 2, 0, 0, 1, 0, 0, 0, 7, 0, 2, 0, 1, 0, 0, 0, 3, 4, 0, 8, 1, 0, 0, 0, 7, 0, 0, 0, 5, 0, 0, 0, 3, 0, 0, 0, 1, 2, 0, 0, 7, 6, 4, 0, 1, 0, 8, 0, 3, 0, 0, 0, 1, 0, 0, 2, 15, 0, 0, 0, 1, 0, 0, 0, 11, 0, 0, 4, 1, 0, 0, 0, 7, 26, 0, 0, 1, 0, 0, 0, 3, 0, 2, 0, 1, 0, 0, 0, 7, 0, 6, 2 (list; graph; refs; listen; history; text; internal format)
OFFSET
2,7
LINKS
EXAMPLE
8 divides exactly three of the numbers 8^4-k^4 for k = 1, 2 , ..., 7, so that a(8) = 3.
MATHEMATICA
s[k_] := k^4;
f[n_, k_] := If[Mod[s[n] - s[k], n] == 0, 1, 0];
t[n_] := Flatten[Table[f[n, k], {k, 1, n - 1}]]
a[n_] := Count[Flatten[t[n]], 1]
Table[a[n], {n, 2, 120}] (* A206825 *)
PROG
(PARI) A206825(n) = { my(n4 = n^4); sum(k=1, n-1, !((n4-(k^4))%n)); }; \\ Antti Karttunen, Nov 17 2017
CROSSREFS
Cf. A206590.
Sequence in context: A350734 A305930 A206590 * A336551 A292380 A242165
KEYWORD
nonn
AUTHOR
Clark Kimberling, Feb 12 2012
STATUS
approved

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 25 03:15 EDT 2024. Contains 371964 sequences. (Running on oeis4.)