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-2 of 2 results.

A342183 Primes q such that 15*q-2 and 15*q+2 are cousin primes.

Original entry on oeis.org

3, 7, 11, 13, 31, 41, 43, 59, 73, 113, 139, 179, 197, 211, 223, 241, 263, 277, 349, 367, 449, 563, 587, 631, 659, 683, 739, 773, 823, 829, 977, 1033, 1049, 1217, 1471, 1487, 1553, 1571, 1583, 1607, 1609, 1669, 1697, 1753, 1901, 1907, 2089, 2111, 2281, 2531
Offset: 1

Views

Author

Tamas Nagy, Mar 04 2021

Keywords

Comments

A pair of cousin primes are primes of the form p and p+4 (where p+2 may or may not be a prime).
Generates cousin primes such that the last digit of the primes are 3 and 7 in base 10.

Crossrefs

Programs

  • PARI
    isok(p) = isprime(p) && isprime(15*p-2) && isprime(15*p+2); \\ Michel Marcus, Mar 05 2021

A342184 Primes q such that 10*q-3 and 10*q+1 are cousin primes.

Original entry on oeis.org

7, 13, 31, 97, 109, 157, 271, 523, 601, 691, 769, 829, 1063, 1069, 1201, 1249, 1291, 1483, 1489, 1567, 1579, 1609, 1693, 1747, 1831, 2203, 2281, 2383, 2803, 2887, 2953, 3511, 3967, 4513, 4651, 5023, 5059, 5437, 5653, 5779, 5821, 6151, 6163, 6199, 6361, 6367
Offset: 1

Views

Author

Tamas Nagy, Mar 04 2021

Keywords

Comments

A pair of cousin primes are primes of the form p and p+4 (where p+2 may or may not be a prime).
Generates cousin primes such that the last digits of the primes are 7 and 1 in base 10.

Crossrefs

Programs

  • PARI
    isok(p) = isprime(p) && isprime(10*p-3) && isprime(10*p+1); \\ Michel Marcus, Mar 05 2021
Showing 1-2 of 2 results.