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.

A138942 Primes of the form (14^n - 3^n)/11.

Original entry on oeis.org

17, 48871, 72155888332711, 5612879326907642747716598753475172001050151332970028230897946300714884208847
Offset: 1

Views

Author

Keywords

Crossrefs

Cf. A128029.

Programs

  • Mathematica
    a={};Do[p=(14^n-3^n)/11;If[PrimeQ[p],AppendTo[a,p]],{n,1,10^2}];a
    Select[Table[(14^n-3^n)/11,{n,1000}],PrimeQ] (* Harvey P. Dale, Jul 22 2012 *)