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 A164129 #7 Nov 04 2015 17:48:20 %S A164129 66347,199081,332207,581237,733123,1047691,2647943,3612799,7505063, %T A164129 10620793,22715029,32180581,36355409,60621553,76753387,98784001, %U A164129 116319367,147594259,162516943,177616529,216596449,252725563,343774313 %N A164129 Primes that are the sums of cubes of three consecutive primes. %H A164129 Harvey P. Dale, <a href="/A164129/b164129.txt">Table of n, a(n) for n = 1..1000</a> %e A164129 23^3+29^3+31^3=66347, 37^3+41^3+43^3=199081, 43^3+47^3+53^3=332207,.. %t A164129 lst={};Do[p=Prime[n]^3+Prime[n+1]^3+Prime[n+2]^3;If[PrimeQ[p],AppendTo[lst,p]],{n,6!}];lst %t A164129 Select[Total[#^3]&/@Partition[Prime[Range[100]],3,1],PrimeQ] (* _Harvey P. Dale_, Nov 04 2015 *) %Y A164129 Cf. A133530, A034962 %K A164129 nonn %O A164129 1,1 %A A164129 _Vladimir Joseph Stephan Orlovsky_, Aug 10 2009 %E A164129 Edited by _Charles R Greathouse IV_, Oct 12 2009