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.

A067905 Primes of the form floor((4/3)^k).

Original entry on oeis.org

2, 3, 5, 7, 13, 17, 23, 31, 55933, 176777, 23517191, 986549121979, 17400648639910404101, 2314855893053257675837, 230183094544225348379651767, 1275923270962002367060689449590920800609
Offset: 1

Views

Author

Benoit Cloitre, Mar 03 2002

Keywords

Programs

  • Mathematica
    f[n_]:=Floor[(4/3)^n]; lst={};Do[p=f[n];If[PrimeQ[p],AppendTo[lst,p]],{n,0,6!}];lst (* Vladimir Joseph Stephan Orlovsky, Jul 02 2009 *)
    Select[Floor[(4/3)^Range[330]],PrimeQ] (* Harvey P. Dale, Dec 12 2018 *)
  • PARI
    v=[]; for(k=2,8004, if(ispseudoprime(t=floor((4/3)^k)), v=concat(v,t))); v