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!)
A292578 Primes of the form 11*n^2 + 55*n + 43. 3
43, 109, 197, 307, 439, 593, 769, 967, 1187, 1429, 1693, 1979, 2287, 2617, 2969, 3343, 3739, 4157, 4597, 5059, 6577, 7127, 7699, 8293, 9547, 10889, 11593, 14629, 15443, 17137, 18919, 19843, 20789, 21757, 24793, 25849, 26927, 28027, 30293, 32647, 33857, 35089 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
The first 20 terms correspond to n from 0 to 19, which makes 11*n^2 + 55*n + 43 a prime-generating polynomial (see the link).
There are only a few prime-generating quadratic polynomials whose coefficients contain at most two digits that produce 20 or more primes in a row. This is one of them, others include A005846, A007641, A060844, and A007637.
LINKS
Eric Weisstein's World of Mathematics, Prime-Generating Polynomial
MAPLE
select(isprime, [seq(11*n^2+55*n+43, n=0..100)]); # Robert Israel, Oct 01 2017
MATHEMATICA
Select[Range[0, 100]//11#^2+55#+43 &, PrimeQ]
PROG
(PARI) for(n=0, 100, isprime(p=11*n^2+55*n+43)&& print1(p ", "))
CROSSREFS
Cf. A000040, A005846, A007641, A060844, A007637 (similar sequences).
Sequence in context: A115586 A294717 A001133 * A139969 A142055 A052088
KEYWORD
nonn
AUTHOR
Waldemar Puszkarz, Sep 19 2017
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 19 23:15 EDT 2024. Contains 371798 sequences. (Running on oeis4.)