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.

A057739 Primes of the form 3^p + 2, where p is prime.

Original entry on oeis.org

11, 29, 2088595827392656793085408064780643444068898148936888424953199350269
Offset: 1

Views

Author

G. L. Honaker, Jr., Oct 29 2000

Keywords

Comments

No additional terms up through prime(1000). - Harvey P. Dale, Apr 07 2019

Examples

			a(2) = 3^3 + 2 = 29, a(3) = 3^139 + 2
		

Crossrefs

Cf. A057738.

Programs

  • Mathematica
    Select[Table[3^p+2,{p,Prime[Range[140]]}],PrimeQ] (* Harvey P. Dale, Apr 07 2019 *)