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.

A015917 Numbers k such that sigma(k) + 12 = sigma(k+12).

Original entry on oeis.org

5, 7, 11, 17, 19, 29, 31, 41, 47, 59, 61, 65, 67, 71, 89, 97, 101, 127, 137, 139, 151, 167, 170, 179, 181, 199, 209, 211, 227, 229, 239, 251, 257, 269, 271, 281, 337, 347, 367, 389, 397, 409, 419, 421, 431, 449, 467, 479, 487, 491, 509, 557, 587
Offset: 1

Views

Author

Keywords

Crossrefs

Cf. A000203.
Union of A046133 and A054902.

Programs

  • Mathematica
    Select[Range[600],DivisorSigma[1,#]+12==DivisorSigma[1,#+12]&] (* Harvey P. Dale, Oct 14 2012 *)
  • PARI
    is(n)=sigma(n)+12==sigma(n+12) \\ Charles R Greathouse IV, Mar 09 2014