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

A256376
Primes of the form 10n^2 - 90n + 163.
1
23, 83, 163, 263, 383, 523, 683, 863, 1063, 1283, 1523, 1783, 2063, 2683, 3023, 4583, 5023, 5483, 6983, 7523, 8663, 9883, 11863, 14783, 16363, 17183, 19763, 20663, 25463, 29663, 30763, 31883, 33023, 34183, 35363, 36563, 37783, 39023, 40283, 42863, 45523, 49663, 56963, 61583, 64763
OFFSET
1,1
LINKS
Charles R Greathouse IV, Table of n, a(n) for n = 1..10000
MATHEMATICA
Select[Table[10 k^2 - 90 k + 163, {k, 7, 600}], PrimeQ]
PROG
(Magma) [ a: k in [7..200] | IsPrime(a) where a is 10*k^2-90*k+163];
(PARI) select(isprime, vector(100, n, 10*n^2 + 30*n - 17)) \\ Charles R Greathouse IV, Mar 27 2015
CROSSREFS
Sequence in context: A139940 A052073 A213174 * A128825 A339475 A167573
KEYWORD
nonn,easy
AUTHOR
Avi Friedlich, Mar 27 2015
EXTENSIONS
Corrected by Vincenzo Librandi, Mar 27 2015
STATUS
approved