This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A224793 #14 Nov 14 2022 23:05:10 %S A224793 2,5,11,13,47,41,31,107,43,73,131,61,191,97,293,139,353,127,163,151,0, %T A224793 229,283,223,659,181,929,313,241,211,367,701,271,397,379,457,337,1031, %U A224793 1259,607,331,463,643,613,1409,733,911,1091,541,1997,421,727,709,673 %N A224793 Least prime p which generates exactly n primes of the form p+q-1 where q < p is prime, or 0 if (conjecturally) no such p exists. %C A224793 a(n) = 0 for n = 20, 165, 467, ... . Do there exist infinitely many such values of n? %C A224793 These values of 0 are all conjectural. - _Robert Israel_, Apr 28 2021 %e A224793 a(1) = 5 since 5 is the least prime that generates exactly one prime 7=5+3-1 of the given form. Again a(3) = 13 since 13 generates exactly 3 primes 17=13+5-1, 19=13+7-1 and 23=13+11-1 of the given form. %t A224793 Cn[n_] := Module[{c}, p = Prime[n]; c = 0; i = 1; While[i < n, If[PrimeQ[p + Prime[i] - 1], c = c + 1] i++]; c]; t = {}; %t A224793 Do[p = 0; j = 0; While[++j < 2000 && p != 1, If[Cn[j] == k, AppendTo[t, Prime[j]]; p = 1, p = 0]]; If[p == 0, AppendTo[t, 0]], {k, 0, 200}]; t %Y A224793 Cf. A072669, A224748. %K A224793 nonn %O A224793 0,1 %A A224793 _Jayanta Basu_, Apr 18 2013 %E A224793 Definition clarified by _Robert Israel_, Apr 28 2021