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”).

A096064
Let p(k) = k-th prime; sequence gives primes q of the form q = k*p(k) + 1 for some k.
3
3, 7, 29, 79, 2137, 3391, 5437, 7603, 25849, 36373, 51059, 54101, 74357, 88327, 92033, 119089, 154387, 179743, 263063, 275813, 328093, 540577, 645529, 671299, 694333, 761713, 824951, 872281, 1133147, 1142809, 1190177, 1206767, 1442333
OFFSET
1,1
LINKS
EXAMPLE
29 is in the sequence because the fourth prime is 7 and 4 * 7 + 1 = 29.
MATHEMATICA
Select[Table[Prime[n]*n + 1, {n, 455}], PrimeQ]
PROG
(Magma) [a: n in [0..500] | IsPrime(a) where a is NthPrime(n)*n + 1 ]; // Vincenzo Librandi, Oct 05 2012
CROSSREFS
Sequence in context: A148761 A186732 A148762 * A148763 A148764 A148765
KEYWORD
nonn
AUTHOR
Alonso del Arte, Jul 20 2004
EXTENSIONS
Offset changed from 0 to 1 by Vincenzo Librandi, Oct 05 2012
STATUS
approved