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

A154831
Numbers n such that n^4-2 is prime.
13
3, 7, 11, 13, 21, 29, 39, 41, 43, 49, 53, 59, 73, 83, 85, 87, 95, 99, 101, 119, 129, 141, 143, 175, 181, 185, 189, 207, 217, 239, 241, 277, 279, 293, 311, 315, 323, 339, 343, 363, 367, 371, 375, 381, 389, 409, 421, 433, 435, 451, 473, 483, 497, 503, 507, 515
OFFSET
1,1
LINKS
MATHEMATICA
lst={}; Do[p=n^4-2; If[PrimeQ[p], AppendTo[lst, n]], {n, 0, 7!}]; lst
Select[Range[600], PrimeQ[#^4-2]&] (* Harvey P. Dale, May 20 2012 *)
PROG
(Magma) [n: n in [1..500] | IsPrime(n^4-2)]; // Vincenzo Librandi, Nov 26 2010
(PARI) is(n)=isprime(n^4-2) \\ Charles R Greathouse IV, Jul 02 2013
CROSSREFS
Sequence in context: A176800 A176797 A078098 * A206944 A206943 A059054
KEYWORD
nonn,easy
AUTHOR
STATUS
approved