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!)
A096784 Numbers n such that both n and n+1 are composite numbers that sum up to a prime. 11
8, 9, 14, 15, 20, 21, 26, 33, 35, 39, 44, 48, 50, 51, 54, 56, 63, 65, 68, 69, 74, 75, 81, 86, 90, 95, 98, 99, 105, 111, 114, 116, 119, 120, 125, 128, 134, 135, 140, 141, 146, 153, 155, 158, 165, 168, 174, 176, 183, 186, 189, 194, 200, 204, 209, 215, 216, 219, 221 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
FORMULA
Equals (A060254 -1)/2.
MATHEMATICA
Select[ Range[ 225], PrimeQ[ # ] == PrimeQ[ # + 1] == False && PrimeQ[2# + 1] == True &] (* Robert G. Wilson v, Jul 11 2004 *)
PROG
(PARI) nextcomposite(k)=if(k<3, 4, if(isprime(k), k+1, k));
{m=230; n=4; while(n<m, k=nextcomposite(n+1); p=n+k; if(k==n+1&&isprime(p), print1(n, ", ")); n=k)} \\ Klaus Brockhaus, Jul 11 2004
(Magma)[n: n in [0..250]|not IsPrime(n) and not IsPrime(n+1) and IsPrime(2*n+1)] // Vincenzo Librandi, Dec 18 2010
CROSSREFS
See A060254 for the primes 2n+1.
Sequence in context: A299143 A068780 A174041 * A175859 A059869 A327863
KEYWORD
nonn
AUTHOR
Lekraj Beedassy, Jul 09 2004
EXTENSIONS
Corrected and extended by Klaus Brockhaus and Ray Chandler, Jul 10 2004
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 24 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)