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.

A228034 Primes of the form 9^n + 2.

Original entry on oeis.org

3, 11, 83, 6563, 59051, 4782971, 282429536483, 2541865828331, 150094635296999123, 57264168970223481226273458862846808078011946891, 30432527221704537086371993251530170531786747066637051
Offset: 1

Views

Author

Vincenzo Librandi, Aug 11 2013

Keywords

Crossrefs

Cf. A004051 (primes of the form 2^a+3^b), A057735 (primes of the form 3^n+2), A090649 (associated n), A104070 (primes of the form 2^n+9), A159352 (primes of the form 10^n+3), A176495 (primes of the form 27^n+2), A182330 (primes of the form 5^n+2).

Programs

  • Magma
    [a: n in [0..300] | IsPrime(a) where a is 9^n+2];
  • Mathematica
    Select[Table[9^n + 2, {n, 0, 300}], PrimeQ]