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.

A066928 Numbers k such that floor(k*log(k)) is prime.

Original entry on oeis.org

3, 4, 7, 9, 10, 12, 20, 29, 65, 67, 72, 73, 86, 93, 97, 98, 107, 117, 140, 143, 146, 147, 148, 150, 151, 153, 156, 182, 183, 186, 192, 194, 205, 206, 207, 211, 227, 228, 235, 236, 241, 248, 249, 253, 259, 270, 273, 279, 283, 289, 292, 298, 325, 330, 347, 352
Offset: 1

Views

Author

Benoit Cloitre, Jan 23 2002

Keywords

Programs

  • Mathematica
    Select[Range[400], PrimeQ[Floor[# * Log[#]]] &] (* Amiram Eldar, May 23 2022 *)
  • PARI
    { n=0; for (m=1, 10^10, if (isprime(floor(m*log(m))), write("b066928.txt", n++, " ", m); if (n==1000, return)) ) } \\ Harry J. Smith, Apr 07 2010