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!)
A180931 Primes p such that their product for the successive prime plus one added to one is a prime: p(i)*[p(i+1)+1]+1 gives a prime. 2
3, 5, 19, 23, 29, 47, 53, 59, 79, 137, 167, 179, 233, 239, 241, 263, 283, 349, 353, 359, 383, 389, 419, 421, 439, 491, 563, 617, 653, 701, 709, 719, 739, 769, 797, 811, 829, 887, 1049, 1051, 1129, 1153, 1187, 1399, 1433, 1489, 1523, 1549, 1559, 1579, 1601 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
There are some twin primes in the sequence: (3,5); (239,241); (419, 421); (1607, 1609).
Apparently the sequence is infinite.
LINKS
EXAMPLE
a(5)=29 since 29*(31+1)+1=29*32+1=929 is a prime.
MAPLE
R:= NULL; count:= 0:
q:= 2:
while count < 100 do
p:= q; q:= nextprime(q);
if isprime(p*(q+1)+1) then count:= count+1; R:= R, p fi
od:
R; # Robert Israel, May 12 2020
MATHEMATICA
Select[Prime[Range[350]], PrimeQ[ # (NextPrime[ # ]+1)+1]&] (* Harvey P. Dale, Oct 08 2010 *)
CROSSREFS
Cf. A000040.
Sequence in context: A305700 A299073 A329797 * A118484 A243898 A243900
KEYWORD
nonn
AUTHOR
Carmine Suriano, Sep 26 2010
EXTENSIONS
Added missing terms (5 terms were omitted after 887). Harvey P. Dale, Oct 08 2010
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 19 07:38 EDT 2024. Contains 371782 sequences. (Running on oeis4.)