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.

A138958 Primes of the form (6^k + 5^k)/11.

Original entry on oeis.org

31, 991, 1608145354351
Offset: 1

Views

Author

Keywords

Comments

The next term has 308 digits. - Harvey P. Dale, Sep 16 2022

Crossrefs

Cf. A128336.

Programs

  • Mathematica
    a={}; Do[p=(6^n+5^n)/11; If[PrimeQ[p], AppendTo[a, p]], {n, 1, 12^2}];a
    Select[Table[(6^n+5^n)/11,{n,20}],PrimeQ] (* Harvey P. Dale, Sep 16 2022 *)