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!)
A277124 Numbers k such that (k+1)*prime(k) + k is a prime. 1
1, 2, 3, 5, 6, 8, 9, 11, 13, 14, 20, 21, 26, 29, 30, 33, 35, 36, 39, 41, 43, 49, 54, 55, 62, 68, 69, 75, 76, 79, 81, 89, 90, 105, 110, 113, 117, 119, 126, 134, 141, 146, 154, 162, 174, 176, 178, 179, 186, 191, 195, 207, 209, 215, 216, 222, 225, 227, 230, 231, 234, 237 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
MAPLE
p:= 1: count:= 0: Res:= NULL:
for n from 1 while count < 100 do
p:= nextprime(p);
if isprime(n*p+n+p) then
count:= count+1; Res:= Res, n
fi
od:
Res; # Robert Israel, Oct 25 2018
MATHEMATICA
npQ[n_]:=Module[{p=Prime[n]}, PrimeQ[n*p+n+p]]; Select[Range[250], npQ] (* Harvey P. Dale, Mar 27 2022 *)
PROG
(PARI) is(n) = isprime((n + 1) * (prime(n) + 1) - 1); \\ Altug Alkan, Oct 01 2016
CROSSREFS
Sequence in context: A353130 A050172 A191877 * A094820 A309793 A093689
KEYWORD
nonn
AUTHOR
Alex Ratushnyak, Sep 30 2016
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 March 28 17:42 EDT 2024. Contains 371254 sequences. (Running on oeis4.)