cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-1 of 1 results.

A335067 Numbers k where records occur for sigma(k+1)/sigma(k), where sigma(k) is the sum of divisors of k (A000203).

Original entry on oeis.org

1, 179, 239, 359, 719, 839, 1259, 3359, 5039, 10079, 25199, 27719, 50399, 55439, 110879, 166319, 360359, 665279, 831599, 1081079, 1441439, 2162159, 3603599, 4324319, 12972959, 21621599, 43243199, 61261199, 73513439, 122522399, 205405199, 245044799, 410810399
Offset: 1

Views

Author

Amiram Eldar, May 22 2020

Keywords

Comments

Shapiro (1978) proved that the closure of the set {sigma(k+1)/sigma(k) | k >= 1} consists of all the nonnegative reals. In particular, sigma(k+1)/sigma(k) is unbounded and therefore this sequence is infinite.
25199 is the first composite term.

Examples

			The values of sigma(k+1)/sigma(k) for the first terms are 3, 3.033..., 3.1, 3.25, 3.358..., ...
		

Crossrefs

Programs

  • Mathematica
    rm = 0; s1 = 1; seq = {}; Do[s2 = DivisorSigma[1,n]; If[(r = s2/s1) > rm, rm = r; AppendTo[seq, n-1]]; s1 = s2, {n, 2, 10^5}]; seq
Showing 1-1 of 1 results.