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.

A290244 Primes of the form 3^k - 14.

Original entry on oeis.org

13, 67, 229, 6547, 129140149, 1162261453, 68630377364869, 145557834293068928043467566190278008218249525830565939618467
Offset: 1

Views

Author

Robert Price, Jul 24 2017

Keywords

Crossrefs

Cf. A000040, A219038 (corresponding k's).

Programs

  • Mathematica
    Select[Table[3^k - 14, {k, 3, 100}], PrimeQ[#] &]
  • PARI
    lista(nn) = for(n=3, nn, if(isprime(p=3^n-14), print1(p", "))); \\ Altug Alkan, Jul 25 2017

Formula

a(n) = 3^A219038(n) - 14. - Elmo R. Oliveira, Nov 11 2023