login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A093310 k-th lower twin prime, where k = n!. 0
3, 3, 5, 41, 461, 4637, 51347, 563009, 6445991 (list; graph; refs; listen; history; internal format)
OFFSET

0,1

PROG

(PARI) f(n) = for(x=0, n, print1(twinl(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, 7000000); 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=0, 8, write("b093310.txt", n, " ", twinl(n!))); } [From Harry J. Smith (hjsmithh(AT)sbcglobal.net), Jun 20 2009]

CROSSREFS

Sequence in context: A201496 A110426 A200562 * A170919 A132809 A005882

Adjacent sequences:  A093307 A093308 A093309 * A093311 A093312 A093313

KEYWORD

nonn

AUTHOR

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

EXTENSIONS

Added new term a(8) = 6445991. 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 21:56 EST 2012. Contains 205860 sequences.