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”).
%I #7 Oct 24 2018 19:17:42
%S 1183,1532,1663,1847,2146,2489,2500,2550,2700,2976,3087,3238,3461,
%T 4236,4483,4681,4692,4834,4849,4946,5178,5836,6062,6098,6269,6591,
%U 6613,6787,6862,6904,7091,7178,7200,7285,7577,7743,8057,8097,8215,8355,8572,8637,8767,8832,8877,9023,9129,9161
%N Indices of primes followed by a gap (distance to next larger prime) of 36.
%C Indices of the primes listed in A134117.
%H <a href="/index/Pri#gaps">Index entries for primes, gaps between</a>.
%F a(n) = A000720(A134117(n)).
%F A320716 = { i>0 | prime(i+1) = prime(i) + 36 }.
%o (PARI) A(N=100,g=36,p=2,i=primepi(p)-1,L=List())={forprime(q=1+p,,i++; if(p+g==p=q, listput(L,i); N--||break));Vec(L)} \\ returns the list of first N terms of the sequence
%Y Cf. A029707, A029709 (analog for gaps 2 & 4), A320701, A320702, ... A320720 (analog for gaps 6, 8, ..., 44), A116493 (gap 70), A116496 (gap 100), A116497 (gap 200), A116495 (gap 210).
%Y Equals A000720 o A134117.
%Y Indices of 36's in A001223.
%Y Row 18 of A174349.
%K nonn
%O 1,1
%A _M. F. Hasler_, Oct 19 2018