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.

A134916 Numbers n such that both 3^n+2 and 2^n+3 are primes.

Original entry on oeis.org

1, 2, 3, 4, 15
Offset: 1

Views

Author

Zak Seidov, Jan 29 2008

Keywords

Comments

Intersection of A057732 and A051783. a(6)>1000.
Since this is the intersection of A057732 and A051783, a(6)>95504. - Dmitry Kamenetsky, Jul 29 2008

Crossrefs

Programs

  • Mathematica
    Select[Range[20],AllTrue[{3^#+2,2^#+3},PrimeQ]&] (* Harvey P. Dale, Sep 02 2022 *)
  • PARI
    for(n=0,1000,if(isprime(2^n+3)&&isprime(3^n+2),print(n)))