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.

A075996 Primes of the form 2 + 2^n + 3^n.

Original entry on oeis.org

7, 37, 277, 10301051460914430942120966371077, 599003433304810403471724557167760804513610446042757207757
Offset: 1

Views

Author

Zak Seidov, Oct 17 2002

Keywords

Crossrefs

Programs

  • Magma
    [ a: n in [0..250] | IsPrime(a) where a is 2+2^n+3^n ]; // Vincenzo Librandi, Dec 16 2010
    
  • PARI
    for(n=1, 100, if(ispseudoprime(t=3^n+2^n+2), print1(t", "))) \\ Charles R Greathouse IV, Jun 08 2016