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.

A033561 Primes p such that 6!+p is also prime.

Original entry on oeis.org

7, 13, 19, 23, 31, 37, 41, 53, 67, 89, 101, 103, 107, 109, 137, 139, 157, 163, 167, 191, 199, 227, 233, 251, 257, 263, 271, 277, 293, 311, 313, 331, 349, 367, 373, 383, 389, 397, 409, 431, 433, 443, 461, 467, 503, 509, 557, 563, 569, 571, 577, 587, 599, 601, 607
Offset: 1

Views

Author

Keywords

Crossrefs

Cf. A054984.

Programs

  • Magma
    [p: p in PrimesUpTo(800)|IsPrime(p+720)]; // Vincenzo Librandi, Apr 10 2013
    
  • Mathematica
    Select[Prime[Range[800]], PrimeQ[# + 720]&] (* Vincenzo Librandi, Apr 10 2013 *)
  • PARI
    isok(k) = isprime(k) && sigma(k + 720) == sigma(k) + 720; \\ Amiram Eldar, Mar 08 2025
Showing 1-1 of 1 results.