OFFSET
1,1
COMMENTS
The large constant is constructed as 3*5*7*11*13*17*19*23*29 = 3234846615.
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 1..1000
EXAMPLE
The prime 31 is in the sequence because 2*31 + 3234846615 = 3234846677 is also prime.
MATHEMATICA
a=3*5*7*11*13*17*19*23*29; c=0; lst={}; Do[p=Prime[n]; If[PrimeQ[2*p+a], AppendTo[lst, p], c++ ], {n, 6!}]; lst
With[{c=Times@@Prime[Range[2, 10]]}, Select[Prime[Range[200]], PrimeQ[ 2#+c]&]] (* Harvey P. Dale, Dec 30 2012 *)
Select[Prime[Range[300]], PrimeQ[2 # + 3234846615]&] (* Vincenzo Librandi, Apr 15 2013 *)
PROG
(Magma) [p: p in PrimesUpTo(1100) | IsPrime(2*p+3234846615)]; // Vincenzo Librandi, Apr 15 2013
CROSSREFS
KEYWORD
nonn,less
AUTHOR
Vladimir Joseph Stephan Orlovsky, Jun 14 2009
EXTENSIONS
Definition reworded by R. J. Mathar, Oct 02 2009
STATUS
approved