A119859 Lesser of the twin primes formed by 8x^4-1 and 8x^4+1 where x is a multiple of 3.
253124999, 10871635967, 14688294407, 168573727367, 196730062847, 248935679999, 528593507207, 759035204999, 956311308287, 1602486789767, 2451216826367, 9613393373447, 18132940558727, 60600405623687
Offset: 1
Keywords
Examples
For x=75, 8x^4-1 = 253124999 prime, 8x^4+1 = 253125001 prime so 253124999 is the first entry.
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
Programs
-
Mathematica
Select[8*(3Range[600])^4,And@@PrimeQ[{#+1,#-1}]&]-1 (* Harvey P. Dale, Feb 14 2013 *)
-
PARI
twin8k3(n) = {local(a,b,c,x); c=0; forstep(x=3,n,3, a=8*x^4-1; b=8*x^4+1; if(ispseudoprime(a)&ispseudoprime(b), c++; print1(a","); ); ); print(); print(c) }
Extensions
Offset corrected by Amiram Eldar, Dec 24 2019
Comments