login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A093311
a(n) is the k-th upper twin prime, where k = n!.
1
5, 5, 7, 43, 463, 4639, 51349, 563011, 6445993, 80358601, 1066687471, 15116681443, 228312888439
OFFSET
0,1
FORMULA
From Amiram Eldar, Jul 07 2024: (Start)
a(n) = A006512(n!).
a(n) = A093310(n) + 2. (End)
PROG
(PARI)
twinu(n) = { local(c, x); c=0; x=1; while(c<n, if(isprime(prime(x)+2), c++); x++; ); return(prime(x)) }
g(n) = for(x=0, n, print1(twinu(x!), ", "))
CROSSREFS
Sequence in context: A019204 A301733 A114367 * A364909 A328344 A100128
KEYWORD
nonn,more
AUTHOR
Cino Hilliard, Apr 25 2004
EXTENSIONS
a(9)-a(12) from Giovanni Resta, Jun 10 2018
STATUS
approved