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.

A163612 Primes of form 5207*n + 1.

Original entry on oeis.org

437389, 510287, 541529, 562357, 604013, 749809, 781051, 853949, 874777, 968503, 978917, 1030987, 1249681, 1322579, 1437133, 1541273, 1562101, 1655827, 1812037, 1947419, 1978661, 2030731, 2124457, 2166113, 2186941, 2280667, 2634743, 2655571, 2686813, 2759711
Offset: 1

Views

Author

Arkadiusz Wesolowski, Aug 01 2009

Keywords

Comments

5207*84+1=437389 is the first term in the sequence.
This is not a subsequence of A059236.
437389 = A059236(908), 510287 = A059236(1046), 541529 = A059236(1106).
3228341, 3624073 and 8091679 belong to this sequence but not to A059236. - Joerg Arndt and Arkadiusz Wesolowski, Jun 26 2011

Crossrefs

Programs

  • Magma
    [5207*n+1 : n in [0..530 by 2] | IsPrime(5207*n+1)]; // Arkadiusz Wesolowski, Mar 05 2011
    
  • Mathematica
    Select[Table[5207*n + 1, {n, 0, 530, 2}], PrimeQ] (* Arkadiusz Wesolowski, Mar 05 2011 *)
  • PARI
    forstep(n=0, 530, 2, if(isprime(x=(5207*n+1)), print1(x, ", "))); \\ Arkadiusz Wesolowski, Mar 05 2011