A320703 Indices of primes followed by a gap (distance to next larger prime) of 10.
34, 42, 53, 61, 68, 80, 82, 101, 106, 115, 125, 127, 138, 141, 145, 157, 172, 175, 177, 191, 193, 204, 222, 233, 258, 266, 269, 279, 289, 306, 308, 310, 316, 324, 369, 383, 397, 399, 403, 418, 422, 431, 443, 474, 491, 497, 500, 502, 518, 525, 531, 535, 575
Offset: 1
Keywords
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..8870
- Index entries for primes, gaps between.
Crossrefs
Programs
-
Magma
[n: n in [1..1000] | NthPrime(n+1) - NthPrime(n) eq 10]; // Vincenzo Librandi, Mar 21 2019
-
Mathematica
Select[Range[1000], Prime[#] + 10 == Prime[# + 1] &] (* Vincenzo Librandi, Mar 21 2019 *) Position[Partition[Prime[Range[600]],2,1],?(#[[2]]-#[[1]]==10&),1,Heads-> False]//Flatten (* _Harvey P. Dale, Mar 08 2020 *)
-
PARI
A320703_vec(N=100,g=10,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
Comments