[go: up one dir, main page]

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

A039950
Primes of form abs(2*n^2-199).
0
37, 43, 71, 89, 101, 127, 139, 149, 167, 181, 191, 193, 197, 251, 313, 379, 449, 523, 601, 683, 769, 859, 953, 1051, 1153, 1259, 1483, 1601, 1723, 1979, 2113, 2251, 2393, 2539, 2689, 2843, 3001, 3163, 3329, 3499, 3673, 3851, 4219, 4409, 4603, 4801, 5003
OFFSET
1,1
REFERENCES
C. Clawson, Mathematical Mysteries, Plenum Press, 1996, p. 173
MATHEMATICA
Select[Abs[2*Range[-15, 70]^2-199], PrimeQ]//Union (* Harvey P. Dale, Mar 20 2018 *)
PROG
(PARI) isok(n) = isprime(n) && (n != 199) && (issquare((n+199)/2) || issquare((199-n)/2)); \\ Michel Marcus, Sep 28 2013
CROSSREFS
Sequence in context: A214797 A109557 A176927 * A186281 A225423 A367478
KEYWORD
nonn
AUTHOR
STATUS
approved