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

A141400
Numbers k such that 16*k^4 + 81 is prime.
0
1, 2, 4, 8, 10, 13, 17, 19, 23, 34, 38, 43, 49, 50, 53, 55, 59, 64, 74, 77, 79, 85, 94, 109, 115, 121, 127, 128, 136, 137, 145, 146, 151, 157, 163, 166, 169, 181, 187, 188, 194, 200, 203, 205, 214, 217, 223, 227, 232, 239, 244, 265, 283, 302, 314, 316, 319, 331
OFFSET
1,2
MATHEMATICA
Select[Range[400], PrimeQ[16 #^4+81]&] (* Harvey P. Dale, Jan 22 2014 *)
PROG
(Magma) [n: n in [0..5000] |IsPrime(16*n^4+81)] // Vincenzo Librandi, Nov 25 2010
(PARI) is(n)=isprime(16*n^4+81) \\ Charles R Greathouse IV, Jun 13 2017
CROSSREFS
Sequence in context: A075333 A297250 A014190 * A190744 A190751 A030232
KEYWORD
easy,nonn
AUTHOR
EXTENSIONS
More terms from Vincenzo Librandi, Mar 25 2010
STATUS
approved