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.

A155845 Primes of the form 2^p-p*q where p is prime,q=3.

Original entry on oeis.org

-2, 17, 107, 524231, 8388539, 162259276829213363391578010287807
Offset: 1

Views

Author

Keywords

Comments

The next term has 1342 digits. - Harvey P. Dale, Dec 09 2013

Crossrefs

Programs

  • Mathematica
    q=3;lst={};Do[p=Prime[n];If[PrimeQ[p=2^p-p*q],AppendTo[lst,p]],{n,5!}];lst
    Select[2^#-3#&/@Prime[Range[900]],PrimeQ] (* Harvey P. Dale, Dec 09 2013 *)