|
| |
|
|
A138355
|
|
Primes of the form n^2+10.
|
|
1
| |
|
|
11, 19, 59, 131, 179, 739, 971, 1531, 2411, 2819, 3259, 3491, 5051, 5939, 6571, 6899, 8291, 9419, 9811, 10211, 15139, 16139, 16651, 19891, 22811, 24659, 25931, 28571, 29251, 32051, 32771, 35731, 42859, 43691, 44531, 49739, 51539, 56179, 57131
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 1,1
|
|
|
LINKS
| Harvey P. Dale, Table of n, a(n) for n = 1..1000
|
|
|
MATHEMATICA
| Intersection[Table[n^2+10, {n, 0, 10^2}], Prime[Range[9*10^3]]] ...or... For[i=10, i<=10, a={}; Do[If[PrimeQ[n^2+i], AppendTo[a, n^2+i]], {n, 0, 100}]; Print["n^2+", i, ", ", a]; i++ ]
Select[Range[250]^2+10, PrimeQ] (* From Harvey P. Dale, Nov 13 2011 *)
|
|
|
PROG
| (MAGMA) [ a: n in [0..900] | IsPrime(a) where a is n^2+10] [From Vincenzo Librandi, Nov 24 2010]
|
|
|
CROSSREFS
| Sequence in context: A107201 A189888 A139829 * A178385 A139602 A080789
Adjacent sequences: A138352 A138353 A138354 * A138356 A138357 A138358
|
|
|
KEYWORD
| nonn
|
|
|
AUTHOR
| Vladimir Orlovsky (4vladimir(AT)gmail.com), May 07 2008
|
|
|
EXTENSIONS
| More terms from Vincenzo Librandi (vincenzo.librandi(AT)tin.it), Apr 28 2010
|
| |
|
|