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!)
A332270 Numbers k such that Sum_{j=1..k} j*floor(k/j) is divisible by k+1. 0
3, 4, 14, 29, 82, 67117, 86249, 140064, 185699, 392081, 2915083, 6315155, 9723681, 17754993, 820165642, 9388829301, 143904506919, 192738887697 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
a(19) > 5*10^11. - Giovanni Resta, May 05 2020
LINKS
MATHEMATICA
q[n_] := Divisible[Sum[j * Floor[n/j], {j, 1, n}], n + 1]; Select[Range[100], q] (* Amiram Eldar, May 03 2021 *)
PROG
(PARI) for(k=1, 1e4, if(sum(j=1, k, k\j*j)%(k+1)==0, print1(k", ")))
(PARI) s=0; for(k=1, 1e7, s+=sigma(k); if(s%(k+1)==0, print1(k", ")))
CROSSREFS
Sequence in context: A047182 A080878 A110565 * A057433 A006074 A081714
KEYWORD
nonn,more
AUTHOR
Seiichi Manyama, May 04 2020
EXTENSIONS
a(16)-a(18) from Giovanni Resta, May 05 2020
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 18:05 EDT 2024. Contains 371798 sequences. (Running on oeis4.)