cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A330818 Numbers of the form 2^(2*p+1), where p is a Mersenne exponent, A000043.

This page as a plain text file.
%I A330818 #21 Jan 07 2020 22:52:53
%S A330818 32,128,2048,32768,134217728,34359738368,549755813888,
%T A330818 9223372036854775808,10633823966279326983230456482242756608,
%U A330818 766247770432944429179173513575154591809369561091801088
%N A330818 Numbers of the form 2^(2*p+1), where p is a Mersenne exponent, A000043.
%C A330818 Also the first factor of A330817, 2^(2*p+1)*M_p^2. The second factor of A330817 is A133049.
%H A330818 Walter Kehowski, <a href="/A330818/b330818.txt">Table of n, a(n) for n = 1..12</a>
%F A330818 a(n) = 2^(2*A000043(n)+1).
%e A330818 a(1) = 2^(2*2+1) = 32. Since M_2=3, the number 2^5*3^2 has power-spectral basis {225,64}.
%p A330818 A330818:=[]:
%p A330818 for www to 1 do
%p A330818 for i from 1 to 31 do
%p A330818   #ithprime(31)=127
%p A330818   p:=ithprime(i);
%p A330818   q:=2^p-1;
%p A330818   if isprime(q) then x:=2^(2*p+1); A330818:=[op(A330818),x]; fi;
%p A330818 od;
%p A330818 od;
%p A330818 A330818;
%t A330818 2^(2 * MersennePrimeExponent[Range[10]] + 1) (* _Amiram Eldar_, Jan 03 2020 *)
%Y A330818 Cf. A000043, A000668, A132794, A133049, A330817, A330819, A330820.
%K A330818 nonn
%O A330818 1,1
%A A330818 _Walter Kehowski_, Jan 01 2020