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!)
A206482 Primes p(k) such that p(k) <= 2^(p(k+1)-p(k)) < p(k+1). 1
2, 3, 13, 61, 1021, 65521, 68719476731, 1427247692705959881058285969449495136382746621 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
The associated prime gaps p(k+1)-p(k) are 1, 2, 4, 6, 10, 16, 36, 150,..
Next gap is 900, corresponding to the 271-digit a(9). - Charles R Greathouse IV, Mar 17 2015
LINKS
EXAMPLE
2 is in the sequence because prime(1)=2^(prime(1+1)-prime(1))<prime(1+1) or 2=2^(3-2)<3;
3 is in the sequence because prime(2)<2^(prime(2+1)-prime(2))<prime(2+1) or 3<2^(5-3)<5;
13 is in the sequence because prime(6)<2^(prime(6+1)-prime(6))<prime(6+1) or 13<2^(17-13)<17.
PROG
(PARI) isA206482(n)={
local(d);
d=2^(nextprime(n+1)-n) ;
if(isprime(n),
if(d>=n && d< nextprime(n+1),
return(1),
return(0)
),
return(0)
)
}
{
for(po=1, 200,
n =precprime(2^po) ;
if (isA206482(n) , print(n)) ;
) ;
} \\ R. J. Mathar, Feb 22 2012
CROSSREFS
Sequence in context: A184179 A100102 A208202 * A164582 A068945 A219698
KEYWORD
nonn
AUTHOR
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 07:01 EDT 2024. Contains 371920 sequences. (Running on oeis4.)