A134117 Primes p such that q-p = 36, where q is the next prime after p.
9551, 12853, 14107, 15823, 18803, 22193, 22307, 22817, 24281, 27143, 28351, 29881, 32261, 40387, 42863, 45083, 45197, 46771, 46957, 47981, 50461, 57601, 60041, 60457, 62423, 65993, 66301, 68171, 69073, 69557, 71597, 72577, 72823, 73783
Offset: 1
Keywords
Links
- Charles R Greathouse IV, Table of n, a(n) for n = 1..10000
- Index entries for primes, gaps between
Programs
-
Mathematica
Select[Partition[Prime[Range[10000]],2,1],#[[2]]-#[[1]]==36&][[All,1]] (* Harvey P. Dale, Aug 27 2019 *)
-
PARI
is(n)=nextprime(n+1)==n+36 && isprime(n) \\ Charles R Greathouse IV, Sep 14 2015
Formula
a(n) >> n log^2 n. - Charles R Greathouse IV, Sep 14 2015