login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A272444 Primes of the form abs(n^5 - 99n^4 + 3588n^3 - 56822n^2 + 348272n - 286397) in order of increasing nonnegative n. 6
286397, 8543, 210011, 336121, 402851, 424163, 412123, 377021, 327491, 270631, 212123, 156353, 106531, 64811, 32411, 9733, 3517, 8209, 5669, 2441, 14243, 27763, 41051, 52301, 59971, 62903, 60443, 52561, 39971, 24251, 7963, 5227, 10429, 1409, 29531, 91673 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
Eric Weisstein's World of Mathematics, Prime-Generating Polynomials
EXAMPLE
402851 is in this sequence since abs(4^5 - 99*4^4 + 3588*4^3 - 56822*4^2 + 348272*4 - 286397) = abs(1024-25344+229632-909152+1393088-286397) = 402851 is prime.
MATHEMATICA
n = Range[0, 100]; Select[n^5 - 99n^4 + 3588n^3 - 56822n^2 + 348272n - 286397, PrimeQ[#] &]
PROG
(PARI) lista(nn) = for(n=0, nn, if(isprime(p=abs(n^5-99*n^4+3588*n^3-56822*n^2+348272*n-286397)), print1(p, ", "))); \\ Altug Alkan, Apr 29 2016
CROSSREFS
Sequence in context: A334311 A249633 A157112 * A250824 A209957 A237702
KEYWORD
nonn
AUTHOR
Robert Price, Apr 29 2016
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)