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.

A262060 Least integer k such that k^(1/n)/log(k) exceeds 2.

Original entry on oeis.org

2, 2, 4913, 463584, 58571590, 9380523077, 1831736082750, 423908600424675, 113798703080610442, 34848887401383308294, 12011778862556061365985, 4609276407921507486293833, 1951202873990586514532224545, 904205931392036935959059378623
Offset: 1

Views

Author

Robert G. Wilson v, Sep 09 2015

Keywords

Crossrefs

Programs

  • Mathematica
    f[n_] := f[n] = Block[{k = f[n - 1]}, While[2 > k^(1/n)/Log[k], k++]; k]; f[1] = 2; Array[f, 6]
  • PARI
    a(n) = {my(k = 2); while(sqrtn(k,n)/log(k) <= 2, k++); k;} \\ Michel Marcus, Sep 10 2015

Extensions

a(14) from Jon E. Schoenfield, Sep 12 2015