OFFSET
1,1
COMMENTS
A076306(n) = {11, 47, 145, 223, 229, 267, 313, 353, ...} Numbers n such that n^3 is a sum of three successive primes.
LINKS
Donovan Johnson, Table of n, a(n) for n = 1..1000
FORMULA
MATHEMATICA
spQ[n_]:=Module[{n3=n^3, a, b, c, d, e}, c=NextPrime[Floor[n3/3]]; b=NextPrime[ c, -1]; a=NextPrime[b, -1]; d=NextPrime[c]; e=NextPrime[d]; n3==a+b+c || n3==b+c+d || n3==c+d+e]; Select[Prime[Range[1200]], spQ] (* Harvey P. Dale, Sep 23 2011 *)
PROG
(PARI) { p1=prime(1) ; p2=prime(2) ; p3=prime(3) ; n3=p1+p2+p3 ; for(i=1, 100000000, if( ispower(n3, 3, &n), if(isprime(n), print(n) ) ; ) ; n3 -= p1 ; p1=p2 ; p2=p3 ; p3=nextprime(p3+1) ; n3 += p3 ; ) ; } \\ R. J. Mathar, Jan 13 2007
CROSSREFS
KEYWORD
nonn
AUTHOR
Alexander Adamchuk, Oct 30 2006
EXTENSIONS
More terms from R. J. Mathar, Jan 13 2007
a(15)-a(46) from Donovan Johnson, Apr 27 2008
STATUS
approved