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.

A271144 Primes of the form 42*k^3 + 270*k^2 - 26436*k + 250703 in order of increasing k.

Original entry on oeis.org

250703, 224579, 199247, 174959, 151967, 130523, 110879, 93287, 77999, 65267, 55343, 48479, 44927, 44939, 48767, 56663, 68879, 85667, 107279, 133967, 165983, 203579, 247007, 296519, 352367, 414803, 484079, 560447, 644159, 735467, 834623, 941879, 1057487
Offset: 1

Views

Author

Robert Price, Apr 23 2016

Keywords

Examples

			151967 is prime and it is in this sequence since 151967 = 42*4^3 + 270*4^2 - 26436*4 + 250703.
		

Crossrefs

Programs

  • Mathematica
    n = Range[0, 100]; Select[42n^3 + 270n^2 - 26436n + 250703, PrimeQ[#] &]