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.

A139528 Numbers n such that numbers 24n+11 are primes.

This page as a plain text file.
%I A139528 #11 Sep 08 2022 08:45:33
%S A139528 0,2,3,4,5,7,9,10,14,17,18,19,20,23,24,27,28,34,39,40,42,45,48,49,52,
%T A139528 53,54,59,60,62,63,65,67,69,74,75,79,80,82,83,84,87,93,94,97,100,102,
%U A139528 105,107,112,117,118,122,123,125,128,133,135,137,138,139,140,144,145,147
%N A139528 Numbers n such that numbers 24n+11 are primes.
%H A139528 Vincenzo Librandi, <a href="/A139528/b139528.txt">Table of n, a(n) for n = 1..1000</a>
%t A139528 a = {}; Do[If[PrimeQ[24 n + 11], AppendTo[a, n]], {n, 0, 200}]; a
%t A139528 Select[Range[0,200],PrimeQ[24#+11]&] (* _Harvey P. Dale_, Apr 08 2013 *)
%o A139528 (Magma) [n: n in [0..150] |IsPrime(24*n+11)]; // _Vincenzo Librandi_, Apr 09 2013
%K A139528 nonn,easy
%O A139528 1,2
%A A139528 _Artur Jasinski_, Apr 25 2008