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!)
A206824 Number of solutions (n,k) of s(k) = s(n) (mod n), where 1 <= k < n and s(k) = k(k+1)/2. 2
1, 1, 1, 1, 2, 1, 1, 1, 2, 1, 2, 1, 2, 3, 1, 1, 2, 1, 2, 3, 2, 1, 2, 1, 2, 1, 2, 1, 4, 1, 1, 3, 2, 3, 2, 1, 2, 3, 2, 1, 4, 1, 2, 3, 2, 1, 2, 1, 2, 3, 2, 1, 2, 3, 2, 3, 2, 1, 4, 1, 2, 3, 1, 3, 4, 1, 2, 3, 4, 1, 2, 1, 2, 3, 2, 3, 4, 1, 2, 1, 2, 1, 4, 3, 2, 3, 2, 1, 4, 3, 2, 3, 2, 3, 2, 1, 2, 3, 2 (list; graph; refs; listen; history; text; internal format)
OFFSET
2,5
COMMENTS
Records at indices {(1), 2, 6, 15, 30, 105, 210, 1155, 2310, 15015, 30030, ...}. - Michael De Vlieger, Sep 22 2017
LINKS
FORMULA
From Michael De Vlieger, Sep 22 2017: (Start)
Conjectures:
a(p^e) = 1, with e > 0.
a(A002110(n)) = 2^(n - 1) and a(A002110(n)/2) = 2^(n - 1) - 1 for n > 0.
a(n) = 2^(A001221(n) - 1) for n even, a(n) = 2^A001221(n) - 1 for n odd. (End)
EXAMPLE
s(6) = 21, and 6 divides exactly two of the numbers 21 - s(k) = {20, 18, 15, 11, 6} for k = 1, 2, ..., 5, so that a(6) = 2.
MATHEMATICA
s[k_] := k (k + 1)/2;
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}] (* A206824 *)
(* Second program: *)
Table[Total@ Flatten@ Table[Boole@ Divisible[Subtract @@ Thread[PolygonalNumber[{n, k}]], n ], {k, n - 1}], {n, 2, 105}] (* Michael De Vlieger, Sep 22 2017 *)
CROSSREFS
Sequence in context: A316556 A187279 A076820 * A293810 A356553 A324369
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 19 07:38 EDT 2024. Contains 371782 sequences. (Running on oeis4.)