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”).

A168254
Numbers n with property that n^3+n^2+{3,5} are twin primes.
1
0, 1, 28, 103, 403, 613, 658, 1018, 1138, 1318, 1678, 2023, 2188, 2383, 2653, 3418, 3853, 3958, 4333, 4393, 4828, 5278, 5908, 6163, 8218, 8428, 8683, 8848, 9028, 9043, 9478, 9868, 10003, 10243, 10978, 11518, 11533, 12133, 12493, 13603, 13633, 14593
OFFSET
0,3
COMMENTS
All positive terms == 1 mod 3.
LINKS
MATHEMATICA
Union[Table[If[PrimeQ[n^3+n^2+3]&&PrimeQ[n^3+n^2+5], n, 0], {n, 1, 40000, 3}]]
Select[Range[0, 15000], And @@ PrimeQ[#^3 + #^2 + {3, 5}] &] (* Harvey P. Dale, Dec 12 2012 *)
CROSSREFS
Sequence in context: A212777 A130281 A255218 * A219380 A263200 A223443
KEYWORD
nonn
AUTHOR
Zak Seidov, Nov 21 2009
STATUS
approved