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!)
A256374 Primes of the form 7*k^2 + 7*k + 17. 1
17, 31, 59, 101, 157, 227, 311, 409, 521, 647, 787, 941, 1109, 1291, 1487, 1697, 2411, 2677, 2957, 3251, 3559, 3881, 4217, 4567, 4931, 5309, 5701, 6961, 8837, 9341, 9859, 10391, 10937, 11497, 12071, 12659, 13877, 15809, 16481, 17167, 19309, 20051, 20807, 21577, 23159, 23971 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
The values k=0 through 15 all give primes.
LINKS
EXAMPLE
For k=15 we get 1697, a prime.
For k=16 we get 1921 = 17*113, not a prime, so not a term of the sequence.
MATHEMATICA
Select[Table[7 n^2 + 7 n +17, {n, 0, 600}], PrimeQ]
PROG
(Magma) [ a: n in [0..200] | IsPrime(a) where a is 7*n^2 + 7*n + 17 ];
(PARI) for(k=0, 1e2, if(ispseudoprime(7*k^2+7*k+17), print1(7*k^2+7*k+17, ", "))) \\ Felix Fröhlich, Apr 01 2015
CROSSREFS
Cf. A256375.
Sequence in context: A260805 A267781 A270441 * A286512 A087166 A167496
KEYWORD
nonn,easy
AUTHOR
Avi Friedlich, Mar 26 2015
EXTENSIONS
Corrected by Vincenzo Librandi, Mar 27 2015
Edited by N. J. A. Sloane, Mar 27 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 April 24 17:20 EDT 2024. Contains 371962 sequences. (Running on oeis4.)