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.

A067907 Primes of the form floor((6/5)^k).

Original entry on oeis.org

2, 3, 5, 7, 31, 79, 137, 197, 2539, 7583, 119257883, 7900521439, 5715680753274209, 454378599506401699, 545254319407682039, 556527288873434664371, 961679155173295100033, 12347176242987457664783
Offset: 1

Views

Author

Benoit Cloitre, Mar 03 2002

Keywords

Programs

  • Mathematica
    Select[Floor[(6/5)^Range[500]],PrimeQ]//Union (* Harvey P. Dale, Mar 09 2025 *)
  • PARI
    v=vector(43); i=0; for(n=1, 12629, if(ispseudoprime(t=floor((6/5)^n)), v[i++]=t)); v \\ Charles R Greathouse IV, Feb 17 2011