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.

A127955 Composite numbers of the form (2^p+1)/3 where p is a prime.

Original entry on oeis.org

178956971, 45812984491, 733007751851, 46912496118443, 3002399751580331, 192153584101141163, 49191317529892137643, 787061080478274202283, 3148244321913096809131, 3223802185639011132549803
Offset: 1

Views

Author

Artur Jasinski, Feb 09 2007

Keywords

Comments

If p-1 is squarefree, the terms are overpseudoprimes (see A141232). - Vladimir Shevelev, Jul 15 2008

Crossrefs

Programs

  • Mathematica
    a = {}; Do[c = (2^Prime[x] + 1)/3; If[PrimeQ[c] == False, AppendTo[a, c]], {x, 2, 30}]; a
    Select[(2^Prime[Range[2,30]]+1)/3,CompositeQ] (* Harvey P. Dale, Feb 04 2015 *)