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.

A067906 Primes of the form floor((5/4)^k).

Original entry on oeis.org

2, 3, 5, 7, 11, 211, 1009, 3851, 7523, 9403, 18367, 213821, 815663, 2010764683, 831632781251, 23636425261531, 537430088605367, 7896825413969130677, 226627774989027955951103, 451298593966207394017315520293
Offset: 1

Views

Author

Benoit Cloitre, Mar 03 2002

Keywords

Programs

  • Mathematica
    Union[Select[Floor[(5/4)^Range[0,400]],PrimeQ]] (* Harvey P. Dale, Jan 06 2012 *)
  • PARI
    for(n=1,1e4, if(ispseudoprime(t=floor((5/4)^n)),print1(t", "))) \\ Charles R Greathouse IV, Feb 17 2011