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

A074268
Primes of the form p^2 - p + 1 where p is prime.
9
3, 7, 43, 157, 4423, 6163, 19183, 22651, 26407, 37057, 113233, 121453, 143263, 208393, 292141, 375157, 412807, 527803, 590593, 843643, 981091, 1041421, 1193557, 1246573, 1441201, 1514131, 1905781, 2023507, 2397853, 2453923, 2548813, 2626021, 2864557
OFFSET
1,1
COMMENTS
Note that p^2 - p + 1 = p * phi(p) + 1 when p is prime.
LINKS
MATHEMATICA
Select[Table[p = Prime[n]; p*EulerPhi[p] + 1, {n, 270}], PrimeQ] (* Arkadiusz Wesolowski, Dec 13 2011 *)
Select[Table[p^2-p+1, {p, Prime[Range[300]]}], PrimeQ] (* Harvey P. Dale, Sep 22 2015 *)
CROSSREFS
Cf. A065508 (values of p).
Sequence in context: A107636 A303160 A258435 * A019026 A181729 A162455
KEYWORD
nonn,easy
AUTHOR
Enoch Haga, Jan 16 2004
STATUS
approved