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.

A290246 Prime numbers that are common indices to both prime Lucas and prime Wagstaff numbers.

Original entry on oeis.org

5, 7, 11, 13, 17, 19, 31, 61, 79, 313, 10691
Offset: 1

Views

Author

Amiram Eldar, Jul 24 2017

Keywords

Comments

Prime numbers p such that Lucas(p) and (2^p + 1)/3 are both primes.
Intersection of A000978 and A001606.

Crossrefs

Programs

  • Mathematica
    seq = {}; wagstaff[n_] := (2^n + 1)/3; Do[p = Prime[n]; If[PrimeQ[LucasL[p]] && PrimeQ[wagstaff[p]], AppendTo[seq, p]], {n, 1, 1304}]; seq