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.

A105129 Primes of the form 128n+65.

Original entry on oeis.org

193, 449, 577, 1217, 1601, 2113, 2753, 3137, 4289, 4673, 4801, 5441, 5569, 5953, 6337, 6977, 7489, 7873, 8513, 8641, 9281, 10177, 10433, 11329, 11969, 12097, 13121, 13249, 13633, 14401, 14657, 15809, 15937, 16193, 17729, 19009, 19777, 20161, 20929, 21313
Offset: 1

Views

Author

N. J. A. Sloane, based on correspondence from Marco Matosic, Apr 11 2005

Keywords

Crossrefs

Programs

  • Magma
    [ a: n in [0..200] | IsPrime(a) where a is 128*n+65 ]; // Vincenzo Librandi, Jul 19 2012
  • Mathematica
    Select[128*Range[0,200]+65,PrimeQ] (* Harvey P. Dale, Apr 17 2012 *)
    Select[Table[128*n+65,{n,0,700}],PrimeQ] (* Vincenzo Librandi, Jul 19 2012 *)