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.

A090661 Numbers n such that prevprime(n!) - n*prevprime((n-1)!) < 0.

Original entry on oeis.org

5, 8, 13, 15, 31, 34, 39, 95, 167, 325, 380, 470, 547
Offset: 1

Views

Author

Mohammed Bouayoun (bouyao(AT)wanadoo.fr), Dec 15 2003

Keywords

Crossrefs

Cf. A090660.

Programs

  • Mathematica
    PrevPrim[ n_ ] := Block[ {k = n - 1}, While[ !PrimeQ[ k ], k-- ]; k ]; Select[ Range[ 275 ], PrevPrim[ #! ] - #*PrevPrim[ (# - 1)! ] < 0 & ] (* Robert G. Wilson v *)

Extensions

More terms from Robert G. Wilson v, Dec 20 2003