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.

A212317 Numbers m such that both 3*2^m + 5 and 5*2^m + 3 are prime.

Original entry on oeis.org

1, 2, 3, 4, 5, 7, 8, 32
Offset: 1

Views

Author

Zak Seidov, Oct 24 2013

Keywords

Comments

No more terms?

Crossrefs

Intersection of A057913 and A058586.

Programs

  • Mathematica
    Select[Range[0,2200], PrimeQ[5*2^#+3] && PrimeQ[3*2^#+5]&]