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!)
A255314 Prime numbers of the form k*(k+1) + (k*(k+1))^2 + 1. 1
7, 43, 157, 421, 8191, 12211, 74257, 117307, 660157, 985057, 1588861, 2435161, 3263443, 4676407, 6004951, 8193907, 12535141, 18408391, 20761693, 27630793, 34251757, 36078043, 55987807, 79753831, 94138507, 106141507, 119257321, 197191807, 217931407, 225195043, 281249671, 357455743 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
These prime numbers are of the form A002378(k) + A002378(k)^2 + 1.
Also, prime numbers of the form 1 + k + 2*k^2 + 2*k^3 + k^4. - Wesley Ivan Hurt, Feb 21 2015
LINKS
EXAMPLE
7 is a term since k=1 gives 1*2 + (1*2)^2 + 1 = 7, which is prime.
MAPLE
A255314:=n->`if`(isprime(1+n+2*n^2+2*n^3+n^4), 1+n+2*n^2+2*n^3+n^4, NULL): seq(A255314(n), n=1..200); # Wesley Ivan Hurt, Feb 28 2015
MATHEMATICA
Select[Table[(n+1) n + ((n+1) n)^2 + 1, {n, 200}], PrimeQ]
PROG
(PARI) for(n=1, 100, if(isprime(p=1+n+2*n^2+2*n^3+n^4), print1(p, ", "))) \\ Derek Orr, Feb 28 2015
(Magma) [a: n in [0..150] | IsPrime(a) where a is n*(n + 1) + (n*(n + 1))^2 + 1 ]; // Vincenzo Librandi, Mar 24 2015
CROSSREFS
Cf. A002378.
Sequence in context: A114352 A201707 A365302 * A166813 A112563 A143569
KEYWORD
nonn
AUTHOR
Waldemar Puszkarz, Feb 20 2015
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 May 9 22:30 EDT 2024. Contains 372354 sequences. (Running on oeis4.)