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.

A073574 Numbers n such that n^3 + 6 is prime.

This page as a plain text file.
%I A073574 #18 Sep 08 2022 08:45:06
%S A073574 1,5,7,13,17,41,73,77,101,103,133,143,145,161,173,181,187,251,271,283,
%T A073574 293,313,325,391,395,425,461,497,503,511,523,581,593,595,647,671,703,
%U A073574 733,745,803,805,815,833,847,853,875,941,965,973,997,1001,1021,1085,1091,1097,1111,1141,1183
%N A073574 Numbers n such that n^3 + 6 is prime.
%H A073574 Vincenzo Librandi, <a href="/A073574/b073574.txt">Table of n, a(n) for n = 1..1000</a>
%t A073574 Select[ Range[ 950 ], PrimeQ[ #^3+6 ] & ]
%t A073574 Select[Range[1,1201,2],PrimeQ[#^3+6]&] (* Because all terms must be odd, there is no need to test even numbers *) (* _Harvey P. Dale_, Oct 03 2018 *)
%o A073574 (Magma)[n: n in [0..1500]|IsPrime(n^3+6)]; // _Vincenzo Librandi_, Dec 16 2010
%o A073574 (PARI) is(n)=isprime(n^3+6) \\ _Charles R Greathouse IV_, Jun 12 2017
%Y A073574 Cf. A067200 (n^3+2 is prime).
%K A073574 nonn,easy
%O A073574 1,2
%A A073574 _Zak Seidov_, Sep 01 2002
%E A073574 More terms from _Vincenzo Librandi_, Dec 16 2010