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.

A138941 Primes of the form (13^k - 3^k)/10.

Original entry on oeis.org

6274633, 3405994336744928448432949523054569, 469545242509890879708897137286442565790534241
Offset: 1

Views

Author

Keywords

Comments

The next term (a(4)) has 299 digits. - Harvey P. Dale, Dec 06 2017

Crossrefs

Cf. A128028.

Programs

  • Mathematica
    a={};Do[p=(13^n-3^n)/10;If[PrimeQ[p],AppendTo[a,p]],{n,1,16^2}];a
    Select[Table[(13^n-3^n)/10,{n,300}],PrimeQ] (* Harvey P. Dale, Dec 06 2017 *)