login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A330824 Numbers of the form 2^(2*p), where p is a Mersenne exponent, A000043. 4
16, 64, 1024, 16384, 67108864, 17179869184, 274877906944, 4611686018427387904, 5316911983139663491615228241121378304 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Also the second element of the power-spectral basis of A064591. The first element of the power-spectral basis of A064591 is A133049.
LINKS
FORMULA
a(n) = 2^(2*A000043(n)) = 4^A000043(n).
EXAMPLE
a(1) = 2^(2*2) = 16. Also A133049(1) = 3^2 = 9, and the spectral basis of A064591(1) = 24 is {9, 16}, consisting of primes and powers.
MAPLE
a := proc(n) if isprime(2^n-1) then return 2^(2*n) fi; end;
[seq(a(n), n=1..31)]; # ithprime(31) = 127
MATHEMATICA
2^(2*MersennePrimeExponent[Range[10]]) (* Harvey P. Dale, Jun 27 2023 *)
PROG
(PARI) forprime(p=1, 99, isprime(2^p-1)&&print1(4^p", ")) \\ or better: {A330824(n)=4^A000043(n)}. - M. F. Hasler, Feb 07 2020
CROSSREFS
Sequence in context: A255576 A065404 A327496 * A189806 A222748 A283271
KEYWORD
nonn
AUTHOR
Walter Kehowski, Jan 06 2020
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 15:34 EDT 2024. Contains 371794 sequences. (Running on oeis4.)