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.

Showing 1-1 of 1 results.

A086858 Let f(n) be the inverse of the function g(x) = x^x. Then a(n) = floor(f(n)).

Original entry on oeis.org

1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3
Offset: 1

Views

Author

Christopher M. Tomaszewski (cmt1288(AT)comcast.net), Sep 16 2003

Keywords

Comments

a(n) is the value of x that solves the equation x^x = n, truncated to an integer.

Examples

			a(32)=3 because the solution to the equation x^x = 32 is x = 3.080448349..., and floor(3.080448349...) = 3.
		

Crossrefs

Programs

  • Mathematica
    f[n_] := Floor[ N[ Log[n]/ProductLog[Log[ n]]]]; Join[{1}, Table[ f[n], {n, 2, 105}]] (* Robert G. Wilson v, Oct 21 2005 *)
  • PARI
    a(n)=exp(lambertw(log(x)))\1 \\ Charles R Greathouse IV, Nov 29 2024

Formula

a(n) = floor(g^-1(n)) where g(x) = x^x.
a(n) ~ log n/log log n. - Charles R Greathouse IV, Nov 29 2024

Extensions

Edited by Jon E. Schoenfield, Sep 09 2017
Showing 1-1 of 1 results.