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.

A275007 Numbers n such that 2^n == sigma(n) (mod n).

Original entry on oeis.org

1, 12, 286, 5978, 111136, 283584, 339379, 1102652, 8830498, 27952828, 30442612, 84638560, 90619592, 101907952, 175917947
Offset: 1

Views

Author

Altug Alkan, Dec 11 2016

Keywords

Comments

Numbers n such that A015910(n) = A054024(n). - Michel Marcus, Dec 11 2016

Examples

			12 is a term because 2^12 == sigma(12) (mod 12).
		

Crossrefs

Programs

  • PARI
    is(n)=Mod(2, n)^n==sigma(n);