cp's OEIS Frontend

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.

A102732 Primes of the form 13n+5.

This page as a plain text file.
%I A102732 #15 Sep 08 2022 08:45:16
%S A102732 5,31,83,109,239,317,421,499,577,733,811,863,941,967,1019,1097,1123,
%T A102732 1201,1279,1409,1487,1669,1721,1747,1877,2111,2137,2267,2293,2371,
%U A102732 2423,2579,2657,2683,2917,2969,3203,3229,3307,3359,3463,3541,3593,3671,3697
%N A102732 Primes of the form 13n+5.
%H A102732 Vincenzo Librandi, <a href="/A102732/b102732.txt">Table of n, a(n) for n = 1..1000</a>
%t A102732 lst={};Do[p=13*n+5;If[PrimeQ[p],AppendTo[lst,p]],{n,0,4*5!}];lst (* _Vladimir Joseph Stephan Orlovsky_, Jan 27 2009 *)
%t A102732 Select[Table[13n+5,{n,0,1000}],PrimeQ] (* _Vincenzo Librandi_, Aug 01 2012 *)
%o A102732 (Magma) [n: n in PrimesUpTo(3800) | IsDivisibleBy(n-5,13)];  // _Bruno Berselli_, Apr 05 2011
%o A102732 (Magma) [ a: n in [0..350] | IsPrime(a) where a is 13*n +5 ]; // _Vincenzo Librandi_, Apr 06 2011
%Y A102732 Cf. A144562. - _Vincenzo Librandi_, Jan 17 2009
%K A102732 nonn,easy
%O A102732 1,1
%A A102732 Jun Mizuki (suzuki32(AT)sanken.osaka-u.ac.jp), Feb 07 2005