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!)
A096342 Primes of the form p*q + p + q, where p and q are two successive primes. 17
11, 23, 47, 167, 251, 359, 479, 719, 1847, 2111, 2591, 3719, 6719, 7559, 8819, 10607, 12539, 14591, 19319, 27551, 29231, 31319, 51071, 53819, 68111, 97967, 149759, 155219, 172199, 177239, 195359, 199799, 234239, 273527, 305783, 314711, 339863 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
a(n) == 3 mod 4.
Primes arising in A126148. - Jonathan Vos Post, Mar 08 2007
Number of primes <10^n: 0, 3, 8, 15, 26, 49, 99, 220, 514, 1228, 2991, 7746, 20218, 54081, ..., . - Robert G. Wilson v
LINKS
Vincenzo Librandi and Charles R Greathouse IV, Table of n, a(n) for n = 1..10000 (first 1000 terms from Librandi)
EXAMPLE
a(4)=167 because 11*13 + 11 + 13=167.
MATHEMATICA
a = {}; Do[p = Prime[n]Prime[n + 1] + Prime[n] + Prime[n + 1]; If[ PrimeQ[p], AppendTo[a, p]], {n, 110}]; a (* Robert G. Wilson v, Jul 01 2004 *)
Select[Times@@#+Total[#]&/@Partition[Prime[Range[200]], 2, 1], PrimeQ] (* Harvey P. Dale, Nov 25 2018 *)
PROG
(PARI) list(lim)=my(v=List(), p=2, t); forprime(q=3, , t=p*q+p+q; if (t>lim, return(Set(v))); if(isprime(t), listput(v, t)); p=q) \\ Charles R Greathouse IV, Sep 15 2015
CROSSREFS
Sequence in context: A139834 A100558 A126199 * A066179 A217566 A347141
KEYWORD
nonn
AUTHOR
Giovanni Teofilatto, Jun 29 2004
EXTENSIONS
More terms from Robert G. Wilson v, Jul 02 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 May 31 01:18 EDT 2024. Contains 372980 sequences. (Running on oeis4.)