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

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A126975 Primes p with property that, if q is the next prime, then the sum of the prime factors of p+q, taken with multiplicity, is a prime. 0
2, 5, 23, 43, 83, 97, 103, 131, 149, 157, 179, 191, 193, 229, 251, 293, 337, 383, 397, 401, 431, 443, 463, 541, 569, 601, 643, 709, 739, 857, 859, 863, 887, 907, 911, 967, 971, 983, 1019, 1039, 1069, 1091, 1093, 1223, 1229, 1249, 1279, 1283, 1321, 1373 (list; graph; refs; listen; history; internal format)
OFFSET

1,1

EXAMPLE

97 is a member: 97 + 101 = 198. Its factors with multiplicity are 2*3*3*11 and their sum is 2+3+3+11=19, which is a prime.

MATHEMATICA

sopfr[n_] := Plus @@ Times @@@ FactorInteger[n]; Prime@Select[Range[240], PrimeQ[sopfr[Prime[ # ] + Prime[ # + 1]]] &] (*Chandler*)

PROG

(MAGMA) [ p: p in PrimesUpTo(1400) | IsPrime(&+[ k[1]*k[2]: k in Factorization(p+NextPrime(p)) ] ) ]; /* Klaus Brockhaus, Mar 25 2007 */

(PARI) {m=1400; p=2; while(p<m, q=nextprime(p+1); f=factor(p+q); if(isprime(sum(j=1, matsize(f)[1], f[j, 1]*f[j, 2])), print1(p, ", ")); p=q)} /* Klaus Brockhaus, Mar 25 2007 */

CROSSREFS

Cf. A086711.

Sequence in context: A141181 A191030 A100031 * A175444 A156314 A173396

Adjacent sequences:  A126972 A126973 A126974 * A126976 A126977 A126978

KEYWORD

nonn,less

AUTHOR

J. M. Bergot (thekingfishb(AT)yahoo.ca), Mar 20 2007

EXTENSIONS

Corrected and extended by Ray Chandler (rayjchandler(AT)sbcglobal.net) and Klaus Brockhaus (klaus-brockhaus(AT)t-online.de), Mar 25 2007

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 16 11:30 EST 2012. Contains 205907 sequences.