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.

A088834 Numbers k such that sigma(k) == 6 (mod k).

Original entry on oeis.org

1, 5, 6, 25, 180, 8925, 32445, 442365
Offset: 1

Views

Author

Labos Elemer, Oct 29 2003

Keywords

Comments

For each integer j in A059609, 2^(j-1)*(2^j - 7) is in the sequence. E.g., for j = A059609(1) = 39 we get 151115727449904501489664. - M. F. Hasler and Farideh Firoozbakht, Dec 03 2013
No more terms to 10^10. - Charles R Greathouse IV, Dec 05 2013
a(9) > 10^13. - Giovanni Resta, Apr 02 2014
a(9) > 1.5*10^14. - Jud McCranie, Jun 02 2019
No more terms < 2.7*10^15. - Jud McCranie, Jul 27 2025

Examples

			Sigma(25) = 31 = 1*25 + 6, so 31 mod 25 = 6.
		

Crossrefs

Cf. A087167 (a subsequence).
Cf. A059609.

Programs

  • Mathematica
    Select[Range[1000000], Mod[DivisorSigma[1, #] - 6, #] == 0 &] (* T. D. Noe, Dec 03 2013 *)
  • PARI
    isok(n) = Mod(sigma(n), n) == 6; \\ Michel Marcus, Jan 03 2023

Extensions

Terms corrected by Charles R Greathouse IV and Farideh Firoozbakht, Dec 03 2013