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.

A127593 Primes of the form 256 k + 85.

Original entry on oeis.org

853, 1109, 1621, 1877, 2389, 3413, 5717, 6229, 6997, 7253, 10069, 10837, 11093, 12373, 13397, 16981, 17749, 18517, 18773, 19541, 21589, 22613, 23893, 24917, 27733, 29269, 30293, 31573, 32341, 37717, 39509, 40277, 41813, 43093, 46933
Offset: 1

Views

Author

Artur Jasinski, Jan 19 2007

Keywords

Crossrefs

Programs

  • Mathematica
    a = {}; Do[If[PrimeQ[85 + 256 n], AppendTo[a, 85 + 256 n]], {n, 0, 200}]; a
    Select[256*Range[200]+85,PrimeQ] (* Harvey P. Dale, Oct 09 2020 *)