OFFSET
1,1
COMMENTS
All terms starting with 216 are multiples of 216 and final digits are 0, 4, 6. - Zak Seidov, Aug 03 2014
LINKS
Jens Kruse Andersen, Table of n, a(n) for n = 1..10000
EXAMPLE
3 and 5 are twin primes and 3 + 5 = 8 = 2^3. So 8 is a member of this sequence.
PROG
(PARI) a(N) = for(n=1, N, p=n^3; if(nextprime(p/2)-precprime(p/2)==2&&precprime(p/2)+nextprime(p/2)==p, print1(p, ", "))) \\ vary the program's range for any N
CROSSREFS
KEYWORD
nonn
AUTHOR
Derek Orr, Jul 26 2014
STATUS
approved