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 A140533 #19 Jan 24 2023 06:56:51 %S A140533 13,17,43,47,73,103,107,137,163,167,193,197,223,227,257,283,313,317, %T A140533 347,373,433,463,467,523,557,587,613,617,643,647,673,677,733,797,823, %U A140533 827,853,857,883,887,947,977,1033,1063,1093,1097,1123,1153,1187,1213,1217 %N A140533 Primes congruent to 13 or 17 mod 30. %H A140533 Vincenzo Librandi, <a href="/A140533/b140533.txt">Table of n, a(n) for n = 1..1000</a> %p A140533 A140533 := proc(n) local a; if n = 1 then 13; else a := nextprime(procname(n-1)) ; while not a mod 30 in {13,17} do a := nextprime(a) ; end do: return a; end if; end: seq(A140533(n),n=1..80) ; # _R. J. Mathar_, Oct 22 2009 %t A140533 Select[Prime[Range[300]],MemberQ[{13,17},Mod[#,30]]&] (* _Vincenzo Librandi_, Aug 15 2012 *) %o A140533 (Magma) [p: p in PrimesUpTo(3000)|p mod 30 in {13,17}]; // _Vincenzo Librandi_, Dec 18 2010 %Y A140533 Cf. A132233, A039949. %Y A140533 Cf. A000040. %K A140533 nonn,easy %O A140533 1,1 %A A140533 _Juri-Stepan Gerasimov_, Jul 28 2008