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.

A177094 Primes of the form 3^(2n) - 8.

Original entry on oeis.org

73, 6553, 4782961, 3486784393, 31381059601, 381520424476945831628649898801
Offset: 1

Views

Author

Vincenzo Librandi, Nov 15 2010

Keywords

Crossrefs

Cf. A177093.

Programs

  • Magma
    [a: n in [1..200] | IsPrime(a) where a is(3^(2*n)-2^3)];
  • Mathematica
    Select[Table[(3^(2 n) - 2^3), {n, 1, 200}], PrimeQ] (* Vincenzo Librandi, Jan 03 2014 *)