login
A388420
Geometric mean of the positive integers with n decimal digits, rounded to nearest integer.
2
4, 47, 475, 4751, 47513, 475134, 4751345, 47513456, 475134568, 4751345690
OFFSET
1,1
FORMULA
Limit_{n->oo} a(n)*exp(1)/10^(n+1/9) = 1.
MATHEMATICA
a[n_]:=Round[GeometricMean[Range[10^(n-1), 10^n-1]]]; Array[a, 5] (* James C. McMahon, Sep 18 2025 *)
CROSSREFS
KEYWORD
nonn,base,more
AUTHOR
Hugo Pfoertner, Sep 18 2025
STATUS
approved