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 #14 Dec 28 2023 23:37:21
%S 17,47,83,127,167,211,257,307,353,401,449,499,563,607,653,709,761,823,
%T 877,937,991,1039,1093,1153,1217,1279,1319,1409,1453,1499,1567,1613,
%U 1669,1741,1801,1873,1933,1999,2063,2113,2179,2251,2309,2371
%N a(n) = prime(8*n - 1).
%H Ivan Panchenko, <a href="/A031374/b031374.txt">Table of n, a(n) for n = 1..1000</a>
%t Prime[8 Range[60] - 1] (* _Wesley Ivan Hurt_, Dec 28 2023 *)
%o (Magma) [ NthPrime(8*n-1): n in [1..1000] ]; // _Vincenzo Librandi_, Apr 09 2011
%K nonn
%O 1,1
%A _Jeff Burch_