The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A087394 Prime(prime(n)) when prime(prime(n)) and n are twin primes. 1
11, 31, 59, 179, 599, 1063, 1153, 1787, 2381, 4091, 4273, 5869, 6661, 9461, 9859, 14867, 15641, 17987, 20773, 20899, 27689, 30557, 39239, 43651, 43889, 61979, 63391, 66749, 66851, 68821, 84347, 96797, 104471, 111271, 132949, 146989, 157771 (list; graph; refs; listen; history; text; internal format)
OFFSET
3,1
LINKS
EXAMPLE
prime(103) = 563. prime(563) = 4091. 103 and 4091 are twin primes.
MATHEMATICA
Select[Prime[Prime[#]]&/@Union[Flatten[Select[Partition[Prime[Range[400]], 2, 1], #[[2]] - #[[1]]==2&]]], AnyTrue[#+{2, -2}, PrimeQ]&] (* The program uses the AnyTrue function from Mathematica version 10 *) (* Harvey P. Dale, Mar 21 2015 *)
PROG
(PARI) twips(n) = { c1=0; c2=0; forprime(x=3, n, if(isprime(x+2), c1++); x1=prime(prime(x)); if(isprime(x-2) || isprime(x+2), if(isprime(x1-2) || isprime(x1+2), print1(x1", "); c2++; ) ) ); print(); print(c2/c1+.0) }
CROSSREFS
Sequence in context: A226922 A031372 A028877 * A196117 A040162 A113747
KEYWORD
easy,nonn
AUTHOR
Cino Hilliard, Oct 21 2003
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 May 16 17:27 EDT 2024. Contains 372554 sequences. (Running on oeis4.)