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.

A176139 Primes of the form prime(n+1)^3+prime(n)^3+1.

This page as a plain text file.
%I A176139 #8 Aug 04 2016 12:34:04
%S A176139 3529,54181,148429,354257,2520073,11665081,14156929,15525973,22786651,
%T A176139 26301257,35166041,39367621,44853229,62519311,110621827,132899131,
%U A176139 141977989,148178521,161245729,177457157,259135757,615109951,648551359
%N A176139 Primes of the form prime(n+1)^3+prime(n)^3+1.
%H A176139 Charles R Greathouse IV, <a href="/A176139/b176139.txt">Table of n, a(n) for n = 1..10000</a>
%t A176139 Select[Table[Prime[n+1]^3+Prime[n]^3+1,{n,6!}],PrimeQ[ # ]&]
%t A176139 Select[Total/@Partition[Prime[Range[150]]^3,2,1]+1,PrimeQ] (* _Harvey P. Dale_, Aug 04 2016 *)
%o A176139 (PARI) p=2;forprime(q=3,1e4,if(isprime(t=p^3+q^3+1),print1(t", "));p=q) \\ _Charles R Greathouse IV_, Apr 15 2012
%Y A176139 Cf. A000040, A176134, A176135, A176136, A176138.
%K A176139 nonn
%O A176139 1,1
%A A176139 _Vladimir Joseph Stephan Orlovsky_, Apr 09 2010