A074386 Numbers k such that sigma(k) is the square of a prime.
3, 81, 400
Offset: 1
Examples
sigma[{3,81,400}]={4,121,961}.
Links
- M. A. Bennett and A. Levin, The Nagell-Ljunggren equation via Runge’s method, Monatshefte für Mathematik 177:1 (2015), 15-31.
- Wikipedia, Goormaghtigh conjecture
Crossrefs
Programs
-
Mathematica
Do[s=DivisorSigma[1, n]; If[PrimeQ[Sqrt[s]], Print[n]], {n, 1, 1000000}] (* Corrected by N. J. A. Sloane, May 26 2008 *)
Extensions
Definition corrected by Juan Lopez, May 26 2008
Edited by N. J. A. Sloane, May 26 2008
Comments