A330836 Numbers of the form 2^(2*p-1)*3*M_p^2, where p > 2 is a Mersenne exponent, A000043, and M_p is the corresponding Mersenne prime, A000668.
4704, 1476096, 396386304, 6753750274277376, 442715102395357986816, 113336363243719574421504, 31901471869127420013759771876790370304, 42404329554681223873219247037048711787234652848116929825491652260298489856
Offset: 1
Keywords
Examples
If p = 3, then a(1) = 2^(2*3-1)*3*7^2 = 4704, and the spectral basis of 4704 is {63^2, 56^2, 48^2}, consisting of powers. The spectral sum of a(1), that is, the sum of the elements of its spectral basis, is 2*4704+1 = 9409. In this case, we say that a(1) has index 2. The number A330838(1) = 9704 has the same spectral basis as a(1), but with index 1. We say that A330838(1) and a(1) are isospectral and form an isospectral pair.
Links
- G. Sobczyk, The Missing Spectral Basis in Algebra and Number Theory, The American Mathematical Monthly 108(4), April 2001.
- Wikipedia, Idempotent (ring theory)
- Wikipedia, Peirce decomposition
Programs
-
Maple
a := proc(n::posint) local p, m; p:=NumberTheory[IthMersenne](n+1); m:=2^p-1; return 2^(2*p-1)*3*m^2; end:
-
Mathematica
f[p_] := 2^(2*p - 1)*3*(2^p - 1)^2; f /@ MersennePrimeExponent /@ Range[2, 9] (* Amiram Eldar, Jan 12 2020 *)
Comments