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!)
A128938 Numbers n such that n(n+1) plus the n-th prime is a prime. 1
3, 5, 7, 9, 10, 11, 12, 13, 20, 27, 28, 32, 33, 35, 36, 41, 42, 43, 45, 47, 49, 54, 63, 65, 74, 75, 84, 91, 94, 95, 98, 104, 105, 107, 109, 113, 114, 117, 122, 124, 126, 128, 129, 135, 140, 149, 152, 155, 160, 164, 168, 171, 189, 190, 192, 199, 203, 209, 212, 214, 216 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
Given that 23 is the 9th prime, take 9*10 + 23 = 113, a prime.
MAPLE
a:=proc(n) if isprime(n*(n+1)+ithprime(n))=true then n else fi end: seq(a(n), n=1..270); # Emeric Deutsch, May 05 2007
MATHEMATICA
Select[Range[300], PrimeQ[#(#+1)+Prime[#]]&] (* Harvey P. Dale, Mar 18 2018 *)
PROG
(PARI) isok(n) = isprime(prime(n)+n+n^2); \\ Michel Marcus, Mar 13 2016
CROSSREFS
Cf. A267421.
Sequence in context: A344449 A258432 A344000 * A215138 A367539 A093373
KEYWORD
nonn,less
AUTHOR
J. M. Bergot, Apr 27 2007
EXTENSIONS
Corrected and extended by Emeric Deutsch, May 05 2007
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 11 07:00 EDT 2024. Contains 372388 sequences. (Running on oeis4.)