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.

A329103 Numbers k such that both k^2 - 3 and 2^k - 3 are primes.

Original entry on oeis.org

4, 10, 14, 20, 266, 452, 694
Offset: 1

Views

Author

Alex Ratushnyak, Nov 04 2019

Keywords

Comments

a(8) > 2086750, using A050414. - Michael S. Branicky, Feb 16 2024

Crossrefs

Intersection of A050414 and A028873.

Programs

  • PARI
    isok(k) = isprime(k^2 - 3) && isprime(2^k - 3); \\ Michel Marcus, Jul 02 2021