cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A128878 Primes of the form 47*n^2 - 1701*n + 10181.

Original entry on oeis.org

10181, 8527, 6967, 5501, 4129, 2851, 1667, 577, 379, 1451, 2617, 3877, 5231, 6679, 8221, 9857, 11587, 13411, 15329, 17341, 19447, 21647, 31387, 34057, 36821, 39679, 45677, 48817, 52051, 65927, 81307, 89561, 102647, 107197, 116579, 126337, 131357
Offset: 1

Views

Author

Douglas Winston (douglas.winston(AT)srupc.com), Apr 17 2007

Keywords

Comments

Primes are given in the order in which they arise for increasing n.
Polynomial generates 22 primes for 0 <= n <= 42, i.e., for n = 0, 1, 2, 3, 4, 5, 6, 7, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42.
If the definition is replaced by "Numbers n of the form 47*k^2 - 1701*k + 10181 such that either n or -n is a prime" we get (essentially) A050267.

Examples

			47k^2 - 1701k + 10181 = 21647 for k = 42.
		

References

  • R. K. Guy, Unsolved Problems in Number Theory, 3rd edition, Springer, 2004, ISBN 0-387-20860-7, Section A17, page 59.

Crossrefs

Programs

  • Mathematica
    Select[Table[47*n^2 - 1701*n + 10181, {n, 0, 100}], # > 0 && PrimeQ[#] &] (* T. D. Noe, Aug 02 2011 *)

Extensions

Edited by Klaus Brockhaus, Apr 22 2007 and by N. J. A. Sloane, May 05 2007 and May 06 2007