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.

A154713 Cubes such that cube-+5 are primes.

This page as a plain text file.
%I A154713 #5 Jun 19 2012 17:07:26
%S A154713 8,1728,110592,287496,474552,2000376,7077888,34012224,191102976,
%T A154713 401947272,631628712,5890514616,14996130696,15550119936,19421724672,
%U A154713 32339798856,35158608576,62949797352,68518346688,76657300992
%N A154713 Cubes such that cube-+5 are primes.
%H A154713 Harvey P. Dale, <a href="/A154713/b154713.txt">Table of n, a(n) for n = 1..1000</a>
%F A154713 A087696 INTERSECT A000578. [From _R. J. Mathar_, Jan 15 2009]
%t A154713 lst={};Do[p=n^3;If[PrimeQ[p-5]&&PrimeQ[p+5],AppendTo[lst,p]],{n,2,2*7!,2}];lst
%t A154713 Select[Range[4300]^3,And@@PrimeQ[#+{5,-5}]&] (* _Harvey P. Dale_, Jun 19 2012 *)
%Y A154713 Cf. A144938, A154709, A154710, A154711, A154712
%K A154713 nonn
%O A154713 1,1
%A A154713 _Vladimir Joseph Stephan Orlovsky_, Jan 14 2009