login
This site is supported by donations 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 (list; graph; refs; listen; history; internal format)
OFFSET

1,1

FORMULA

a(n) = A001359(A000045(n)). [From R. J. Mathar (mathar(AT)strw.leidenuniv.nl), 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)))); } [From Harry J. Smith (hjsmithh(AT)sbcglobal.net), Jun 20 2009]

CROSSREFS

Sequence in context: A201866 A191632 A146918 * A093309 A187874 A126318

Adjacent sequences:  A093303 A093304 A093305 * A093307 A093308 A093309

KEYWORD

nonn

AUTHOR

Cino Hilliard (hillcino368(AT)gmail.com), Apr 25 2004

EXTENSIONS

Added more terms. Harry J. Smith (hjsmithh(AT)sbcglobal.net), Jun 20 2009

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 15 19:15 EST 2012. Contains 205852 sequences.