login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A181114
Numbers n > 0 such that n^6 + 1091 and n^6 + 1093 are both prime.
0
62244, 139230, 171990, 1010100, 1029210, 1275456, 1320774, 1353534, 1356810, 1433796, 1722630, 1842750, 2131584, 2300844, 2396940, 2890524, 2915094, 3357354, 3579030, 3625440, 3631446, 4165980, 4392024, 4408950, 4518150
OFFSET
1,1
MATHEMATICA
tpQ[n_]:=Module[{x=n^6+1091}, PrimeQ[x]&&PrimeQ[x+2]]
Select[Range[5000000], tpQ] (* Harvey P. Dale, Feb 17 2011 *)
PROG
(Magma) IsA181114:=func< n | IsPrime(k+1091) and IsPrime(k+1093) where k is n^6 >; [ n: n in [1..5000000] | IsA181114(n) ]; // Klaus Brockhaus, Feb 17 2011
CROSSREFS
Sequence in context: A093791 A083488 A360838 * A242620 A203046 A180163
KEYWORD
nonn
AUTHOR
Jason Earls, Oct 04 2010
STATUS
approved