[go: up one dir, main page]

login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A279091
Numbers k for which sigma(k) - 4k exceeds sigma(j) - 4j for all j < k.
1
1, 27720, 50400, 55440, 83160, 110880, 166320, 221760, 277200, 332640, 360360, 443520, 471240, 498960, 554400, 655200, 665280, 720720, 942480, 1053360, 1081080, 1330560, 1413720, 1441440, 1663200, 1801800, 1884960, 2106720, 2162160, 2827440, 2882880, 3326400
OFFSET
1,2
COMMENTS
Does lcm(1..10) = 2520 divide a(n) for all n > 1?
Does lcm(1..11) = 27720 divide a(n) for all n except 1, 3, and 16?
LINKS
EXAMPLE
50400 is in the sequence because sigma(50400) - 4*50400 = 203112 - 201600 = 1512, and no k < 50400 has a value of sigma(k) - 4k this large.
PROG
(PARI) lista(nn) = {m = -oo; k = 0; for (n=1, nn, if ((nm = (sigma(n) - 4*n)) > m, k++; print1(n, ", "); m = nm); ); } \\ Michel Marcus, Nov 02 2017
CROSSREFS
Cf. A034090, A140522, A279088: with 1, 2 and 3 instead of 4.
Sequence in context: A345153 A190111 A068404 * A307114 A291458 A023943
KEYWORD
nonn
AUTHOR
Jon E. Schoenfield, Jan 30 2017
STATUS
approved