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.

A227307 Numbers k that divide sigma(k) - sigma(k-1).

Original entry on oeis.org

2, 6, 15, 19, 207, 958, 1335, 1365, 1635, 2686, 2975, 3201, 4365, 4536, 8586, 14842, 16120, 18874, 19359, 20146, 24958, 33999, 36567, 42819, 53580, 56565, 64666, 74919, 79827, 79834, 84135, 92686, 109215, 111507, 116938, 122074, 138238, 147455, 161002, 162603, 166935
Offset: 1

Views

Author

Alex Ratushnyak, Jul 05 2013

Keywords

Crossrefs

A231546 is a subsequence.

Programs

  • Mathematica
    With[{m = 200000}, 1 + Position[Differences[DivisorSigma[1, Range[m]]]/Range[2, m], ?IntegerQ] // Flatten] (* _Amiram Eldar, Dec 31 2024 *)
  • PARI
    list(lim) = {my(s1 = 1, s2); for(k = 2, lim, s2 = sigma(k); if(!((s2-s1) % k), print1(k, ", ")); s1 = s2);} \\ Amiram Eldar, Dec 31 2024
Showing 1-1 of 1 results.