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.

A274566 Numbers k such that sigma(k) == 0 (mod k-10).

Original entry on oeis.org

6, 9, 11, 12, 14, 22, 40, 42, 46, 154, 190, 2656, 6490, 44650, 318250, 1360810, 1503370, 1788490, 3214090, 103712410, 3915380170, 6077111050, 9796360330, 10828121356, 33086522327050, 35966517350410, 11577093570201610, 16726040141635450, 576460762503970816
Offset: 1

Views

Author

Paolo P. Lava, Jul 06 2016

Keywords

Examples

			sigma(11) mod (11 - 10) = 12 mod 1 = 0.
		

Crossrefs

Programs

  • Magma
    [n: n in [1..2*10^6] | n ne 10 and SumOfDivisors(n) mod (n-10) eq 0 ]; // Vincenzo Librandi, Jul 06 2016
    
  • Mathematica
    k = -10; Select[Range[1, 10^7], # + k != 0 && Mod[DivisorSigma[1, #], # + k] == 0 &] (* Vincenzo Librandi, Jul 06 2016 *)
  • PARI
    isok(k) = (k!=10) && !(Mod(sigma(k), k-10)); \\ Michel Marcus, May 30 2025

Extensions

a(19)-a(24) from Giovanni Resta, Jul 06 2016
a(25)-a(26) from Jud McCranie, Dec 02 2019
Terms 6,9 inserted and a(27)-a(29) added by Max Alekseyev, May 30 2025