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.

A216496 Primes that are not in A094383.

Original entry on oeis.org

2, 3, 5, 7, 11, 13, 17, 19, 31, 37, 47, 61, 67, 71, 73, 89, 109, 137, 179, 211, 277, 337, 379, 499, 557
Offset: 1

Views

Author

Alex Ratushnyak, Sep 08 2012

Keywords

Comments

Conjecture: a(25)=557 is the last term.

Crossrefs

Programs

  • Mathematica
    prms = 3; fQ[p_] := Module[{d = 1}, While[prms*d < p && Union[PrimeQ[p - Range[prms]*d]] != {True}, d++]; prms*d < p]; Select[Prime[Range[PrimePi[10000]]], ! fQ[#] &] (* T. D. Noe, Sep 08 2012 *)