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!)
A206827 Number of solutions (n,k) of s(k) == s(n) (mod n), where 1 <= k < n and s(k) = k*(k+1)*(2*k+1)/6. 4
1, 1, 1, 2, 2, 2, 1, 1, 3, 2, 2, 2, 3, 3, 1, 2, 1, 2, 3, 3, 3, 2, 1, 2, 3, 1, 3, 2, 3, 2, 1, 3, 3, 8, 1, 2, 3, 3, 3, 2, 4, 2, 3, 3, 3, 2, 2, 2, 3, 3, 3, 2, 2, 8, 3, 3, 3, 2, 2, 2, 3, 3, 1, 8, 3, 2, 3, 3, 9, 2, 1, 2, 3, 3, 3, 8, 2, 2, 3, 1, 3, 2, 4, 8, 3, 3, 3, 2, 5, 8, 3, 3, 3, 8, 2, 2, 3, 3, 3 (list; graph; refs; listen; history; text; internal format)
OFFSET
2,4
COMMENTS
For a guide to related sequences, see A206588.
If n is a prime > 3, a(n) = 2. - Robert Israel, Jun 04 2023
LINKS
EXAMPLE
5 divides exactly two of the numbers s(n)-s(k) for k=1,2,3,4, so a(5)=2.
MAPLE
f:= n -> numboccur(S[n] mod n, S[1..n-1] mod n):
S:= [seq(k*(k+1)*(2*k+1)/6, k=1..100)]:
map(f, [$2..100]); # Robert Israel, Jun 04 2023
MATHEMATICA
s[k_] := k (k + 1) (2 k + 1)/6;
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}] (* A206827 *)
CROSSREFS
Cf. A206588.
Sequence in context: A282011 A245514 A104754 * A098593 A144431 A053821
KEYWORD
nonn
AUTHOR
Clark Kimberling, Feb 15 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 23 08:33 EDT 2024. Contains 371905 sequences. (Running on oeis4.)