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!)
A127587 Smallest nonnegative integer k such that (k+1)*2^n-1 is prime. 13
2, 1, 0, 0, 1, 0, 1, 0, 4, 6, 4, 2, 1, 0, 4, 3, 1, 0, 1, 0, 13, 6, 25, 12, 38, 21, 10, 15, 7, 3, 1, 0, 4, 5, 2, 23, 11, 5, 2, 24, 23, 11, 5, 2, 13, 6, 19, 9, 4, 18, 10, 20, 19, 9, 4, 2, 31, 15, 7, 3, 1, 0, 11, 5, 2, 66, 62, 42, 62, 39, 19, 9, 4, 14, 11, 5, 2, 54, 46, 29, 14, 29, 14, 63, 31, 15, 7 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
The associated prime number list is (k+1)*2^n-1 = 2,3,3,7,31,31,127,127,1279,3583,5119,6143,... for n=0,1,2,3,4,... - R. J. Mathar, Jan 22 2007
LINKS
FORMULA
a[A000043(j)]=0 for j=1,2,3,4,... - R. J. Mathar, Jan 22 2007
a(n) = A085427(n) - 1. - Filip Zaludek, Dec 16 2016
MAPLE
A127587 := proc(n) local k; k:=0 ; while true do if isprime( (k+1)*2^n-1) then RETURN(k) ; fi ; k := k+1 ; od ; end: for n from 0 to 100 do printf("%d, ", A127587(n)) ; od ; # R. J. Mathar, Jan 22 2007
MATHEMATICA
a = {}; Do[k = 0; While[ ! PrimeQ[k 2^n + 2^n - 1], k++ ]; AppendTo[a, k], {n, 0, 50}]; a
CROSSREFS
Sequence in context: A051699 A328682 A007920 * A175832 A330961 A345236
KEYWORD
nonn
AUTHOR
Artur Jasinski, Jan 19 2007
EXTENSIONS
More terms from R. J. Mathar, Jan 22 2007
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 24 05:26 EDT 2024. Contains 371918 sequences. (Running on oeis4.)