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.

Showing 1-1 of 1 results.

A090685 Primes of the form 8*k^2 + 1.

Original entry on oeis.org

73, 1153, 1801, 2593, 3529, 8713, 10369, 18433, 20809, 34849, 48673, 52489, 69193, 83233, 103969, 115201, 139393, 180001, 187273, 209953, 259201, 267913, 362953, 405001, 415873, 426889, 438049, 449353, 472393, 484129, 508033, 622729, 636193
Offset: 1

Views

Author

Cino Hilliard, Dec 18 2003

Keywords

Crossrefs

Cf. A188549.

Programs

  • Magma
    [ a: n in [0..350] | IsPrime(a) where a is 8*n^2+1 ]; // Vincenzo Librandi, Apr 04 2011
  • Mathematica
    Select[8 Range[300]^2+1,PrimeQ]  (* Harvey P. Dale, Apr 02 2011 *)
  • PARI
    A090685(n) = { for(x=1,n, y = 8*x^2+1; if(isprime(y),print1(y",")) ) }
    
Showing 1-1 of 1 results.