A165138 Smallest prime p > prime(n) such that p+prime(n) is a semiprime.
7, 7, 17, 19, 23, 61, 29, 43, 59, 53, 43, 97, 53, 79, 59, 89, 83, 73, 79, 107, 181, 127, 131, 113, 109, 113, 151, 167, 193, 149, 151, 167, 197, 163, 197, 163, 229, 199, 179, 281, 347, 241, 263, 229, 257, 223, 271, 331, 239, 313, 269, 263, 313, 263, 269, 359, 293
Offset: 1
Keywords
Examples
2+7=9=3*3 (semiprime), 3+7=10=2*5 (semiprime), 5+17=22=2*11 (semiprime).
Links
- T. D. Noe, Table of n, a(n) for n = 1..1000
Programs
-
Mathematica
sp[n_]:=Module[{np=NextPrime[n]},While[PrimeOmega[n+np]!=2,np= NextPrime[ np]]; np]; sp/@Prime[Range[60]] (* Harvey P. Dale, Apr 06 2016 *)
-
PARI
a(n) = {q = prime(n); p = nextprime(q+1); while (bigomega(p+q)!=2, p = nextprime(p+1)); p;} \\ Michel Marcus, Oct 15 2015
Extensions
Prior Mathematica program deleted by Harvey P. Dale, Apr 06 2016
Comments