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!)
A093306 k-th lower twin prime, where k is the n-th Fibonacci number. 1
3, 3, 5, 11, 29, 71, 179, 347, 857, 1721, 3359, 6089, 11831, 22271, 41957, 77711, 138401, 249437, 447791, 799739, 1399199, 2459921, 4312739, 7581941, 13233839, 23019041, 39921977, 69112961, 119168381, 205190351, 352286897, 603678287, 1032646421, 1763797499 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
FORMULA
a(n) = A001359(A000045(n)). - R. J. Mathar, Feb 06 2010
EXAMPLE
For n=6, the 6th Fibonacci number is 8 and the 8th lower twin prime is 71, the 6th entry.
PROG
(PARI) f(n) = for(x=1, n, print1(twinl(fibonacci(x))", ")) twinl(n) = { local(c, x); c=0; x=1; while(c<n, if(isprime(prime(x)+2), c++); x++; ); return(prime(x-1)) }
(PARI) default(primelimit, 20000000); twinl(n) = { local(c, x); c=0; x=1; while(c<n, if(isprime(prime(x)+2), c++); x++); return(prime(x-1)) } { for(n=1, 25, write("b093306.txt", n, " ", twinl(fibonacci(n)))); } \\ Harry J. Smith, Jun 20 2009
CROSSREFS
Sequence in context: A201866 A191632 A146918 * A093309 A187874 A126318
KEYWORD
nonn
AUTHOR
Cino Hilliard, Apr 25 2004
EXTENSIONS
a(24)-a(25) from Harry J. Smith, Jun 20 2009
a(26)-a(34) from Giovanni Resta, Jun 10 2018
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 21:09 EDT 2024. Contains 371798 sequences. (Running on oeis4.)