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.

A274556 Numbers k such that sigma(k) == 0 (mod k-5).

Original entry on oeis.org

2, 3, 4, 6, 7, 8, 11, 12, 18, 21, 26, 68, 656, 2336, 8768, 133376, 528896, 34360918016, 35184409837568, 576460757135261696
Offset: 1

Views

Author

Paolo P. Lava, Jun 30 2016

Keywords

Examples

			sigma(6) (mod 6-5) = 12 mod 1 = 0.
		

Crossrefs

Programs

  • Magma
    [n: n in [1..2*10^6] | n ne 5 and SumOfDivisors(n) mod (n-5) eq 0]; // Vincenzo Librandi, Jul 02 2016
  • Mathematica
    n = -5; Select[Range[1, 10^6], # + n != 0 && Mod[DivisorSigma[1, #], # + n] == 0 &] (* Michael De Vlieger, Jul 01 2016 *)

Extensions

a(18) from Giovanni Resta, Jul 01 2016
Terms 2,3,4 inserted, a(19)-a(20) added by Max Alekseyev, May 25 2025