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

 


A185658
Primes of the form 43*n^2 + 3*n + 1.
2
41, 47, 167, 179, 379, 397, 677, 701, 1061, 1091, 1531, 1567, 2087, 2129, 2729, 2777, 3457, 3511, 4271, 5171, 5237, 6229, 7229, 7307, 8387, 9631, 9721, 11057, 12377, 12479, 13879, 15467, 15581, 20747, 20879, 22679, 22817
OFFSET
1,1
COMMENTS
Also primes of the form (n^2 + n + 41) / 43. Note that in the form 43n^2 + 3n + 1, both positive and negative n must be considered.
LINKS
MATHEMATICA
a={}; Do[p=(n^2+n+41)/43; If[PrimeQ[p], AppendTo[a, p]], {n, 10^4}]; Print[a];
PROG
(PARI) for(n=1, 1e2, if(isprime(t=43*n^2-3*n+1), print1(t", ")); if(isprime(t=43*n^2+3*n+1), print1(t", "))) \\ Charles R Greathouse IV, Feb 27 2011
CROSSREFS
Cf. A185657.
Sequence in context: A043151 A043931 A139219 * A074485 A039383 A043206
KEYWORD
nonn,easy
AUTHOR
Michel Lagneau, Feb 08 2011
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | 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 September 21 16:02 EDT 2024. Contains 376087 sequences. (Running on oeis4.)