[go: up one dir, main page]

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

A084198
Primes p such that there exists exactly one prime q<p with q+1 dividing p+1.
4
5, 7, 19, 43, 67, 97, 163, 181, 211, 283, 331, 349, 523, 547, 601, 691, 787, 853, 907, 937, 1021, 1051, 1123, 1171, 1429, 1531, 1549, 1723, 1777, 1867, 2011, 2029, 2053, 2083, 2113, 2251, 2281, 2347, 2371, 2467, 2521, 2707, 2731, 2749, 2803, 2971, 3067
OFFSET
1,1
COMMENTS
A084196(A049084(a(n)))=1.
LINKS
MATHEMATICA
pdQ[n_]:=Module[{prs=Prime[Range[500]], p1}, p1=Select[prs, #<n&]+1; Count[ p1, _?(Divisible[n+1, #]&)]==1]; Select[Prime[Range[500]], pdQ] (* Harvey P. Dale, Dec 24 2013 *)
PROG
(Haskell)
a084198 n = a084198_list !! (n-1)
a084198_list = map a000040 $ filter ((== 1) . a084196) [1..]
-- Reinhard Zumkeller, Jan 06 2014
CROSSREFS
Sequence in context: A106987 A342738 A321510 * A036061 A288608 A079361
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, May 18 2003
EXTENSIONS
Corrected by T. D. Noe, Oct 25 2006
STATUS
approved