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.

A121624 Numbers k such that floor((prime(k)/k)^k) is prime.

Original entry on oeis.org

1, 2, 6, 9, 26, 179, 289, 25564, 109436
Offset: 1

Views

Author

Jason Earls, Aug 11 2006

Keywords

Comments

a(9) > 39637. - J.W.L. (Jan) Eerland, Nov 11 2024

Crossrefs

Cf. A121623.

Programs

  • Mathematica
    fQ[n_] := PrimeQ[Floor[(Prime[n]/n)^n]]; Do[ If[fQ@n, Print@n], {n, 10000}] (* Robert G. Wilson v Aug 17 2006 *)
    n=1;Monitor[Parallelize[While[True,If[PrimeQ[Floor[(Prime[n]/n)^n]],Print[n]];n++];n],n] (* J.W.L. (Jan) Eerland, Nov 11 2024 *)

Extensions

a(8) from J.W.L. (Jan) Eerland, Nov 11 2024
a(9) from Michael S. Branicky, Mar 02 2025