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.

A092427 Least k > 1 such that k^n divides (k-1)!.

Original entry on oeis.org

2, 6, 12, 12, 12, 24, 24, 36, 40, 45, 48, 60, 60, 60, 72, 72, 72, 80, 80, 90, 90, 120, 120, 120, 120, 120, 120, 120, 144, 144, 144, 144, 144, 144, 144, 180, 180, 180, 180, 180, 180, 180, 180, 180, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240
Offset: 0

Views

Author

Benoit Cloitre, Mar 22 2004

Keywords

Comments

Is 45 the only odd number in this sequence? - Derek Orr, Apr 16 2015

Crossrefs

A061770 gives values of n such that a(n) > a(n-1).

Programs

  • Mathematica
    Table[k = 2; While[Mod[(k - 1)!, k^n] != 0, k++]; k, {n, 0, 60}] (* Michael De Vlieger, Apr 16 2015 *)
  • PARI
    a(n)=if(n<0,0,k=2;while((k-1)!%(k^n)>0,k++);k)

Formula

Does lim_{n->oo} a(n)/n exist?

Extensions

Name edited by Derek Orr, Apr 16 2015