login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

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
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