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.

A273941 Primes of the form 6^n - n.

Original entry on oeis.org

5, 609359740010477, 2887378820390246558653190730940373
Offset: 1

Views

Author

Vincenzo Librandi, Jun 05 2016

Keywords

Comments

Corresponding n are given in A058829.
The next term has 473 digits.

Crossrefs

Cf. similar sequences listed in A273940.
Cf. A058829.

Programs

  • Magma
    [a: n in [0..400] | IsPrime(a) where a is 6^n-n ];
  • Mathematica
    Select[Table[6^n - n, {n, 400}], PrimeQ[#] &]