The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A156893 Primes of the form 1 + 2 * Product_{i=1..k} (2^i-1). 1
3, 7, 43, 631, 19531, 1230391, 39846180151, 42638416803867688651, 1430183959005766573513154251 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Primes of the form 2*A005329(k)+1.
LINKS
EXAMPLE
For n=4, 2*(2^1 - 1)*(2^2 - 1)*(2^3 -1)*(2^4 - 1) + 1 = 2*1*3*7*15 + 1 = 631
MAPLE
R:= NULL: count:= 0: v:= 1:
for k from 1 while count < 10 do
v:= v*(2^k-1);
p:= 1+2*v;
if isprime(p) then R:= R, p; count:= count+1 fi
od:
R; # Robert Israel, May 04 2023
CROSSREFS
Sequence in context: A181729 A162455 A143684 * A050639 A280717 A100837
KEYWORD
nonn
AUTHOR
J. M. Bergot, Feb 17 2009
EXTENSIONS
Definition and terms corrected by R. J. Mathar, Jul 10 2011
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 May 22 06:48 EDT 2024. Contains 372743 sequences. (Running on oeis4.)