A276663 Sum of primes dividing n-th perfect number (with repetition).
5, 11, 39, 139, 8215, 131103, 524323, 2147483707, 2305843009213694071, 618970019642690137449562287, 162259276829213363391578010288339, 170141183460469231731687303715884105979
Offset: 1
Keywords
Examples
39 is in this sequence because 39 - 2^(5 - 1) = 31 = 2^5 - 1 and 31 is prime.
Links
- Amiram Eldar, Table of n, a(n) for n = 1..18
Crossrefs
Programs
-
Mathematica
Table[Total[Times@@@FactorInteger[PerfectNumber[n]]],{n,15}] (* Harvey P. Dale, Sep 22 2019 *)
-
PARI
\\ Ochem & Rao: no odd perfect numbers below 10^1500 forprime(p=2,2281, if(ispseudoprime(t=2^p-1), print1(2^p+2*p-3", "))) \\ Charles R Greathouse IV, Sep 18 2016
Comments