A133028 Even perfect numbers divided by 2.
3, 14, 248, 4064, 16775168, 4294934528, 68719345664, 1152921504069976064, 1329227995784915872327346307976921088, 95780971304118053647396689042151819065498660774084608, 6582018229284824168619876730229361455111736159193471558891864064, 7237005577332262213973186563042994240786838745737417944533177174565599576064
Offset: 1
Keywords
Links
- Amiram Eldar, Table of n, a(n) for n = 1..15
- Omar E. Pol, Determinacion geometrica de los numeros primos y perfectos.
Crossrefs
Programs
-
Maple
a:=proc(n) if isprime(2^n-1)=true then 2^(n-2)*(2^n-1) else end if end proc: seq(a(n),n=1..120); # Emeric Deutsch, Oct 24 2007
-
Mathematica
p = Select[2^Range[400] - 1, PrimeQ]; p*(p+1)/4 (* Vladimir Joseph Stephan Orlovsky, Feb 02 2012 *) Map[2^(#-2) * (2^# - 1) &, MersennePrimeExponent[Range[12]]] (* Amiram Eldar, Oct 21 2024 *)
Formula
a(n) = A000396(n)/2. - R. J. Mathar, Oct 23 2007 [Assuming there are no odd perfect numbers. - Jianing Song, Sep 17 2022]
Extensions
More terms from R. J. Mathar and Emeric Deutsch, Oct 23 2007
Comments