login
A388422
Geometric mean of the primes with n decimal digits, rounded to nearest integer.
3
4, 42, 447, 4563, 46005, 462240, 4641742, 46567508, 466794560, 4676700011, 46837684237
OFFSET
1,1
MATHEMATICA
a[n_]:=Module[{plim=PrimePi[NextPrime[10^n, -1]], pllim=PrimePi[NextPrime[10^(n-1)]]}, Round[GeometricMean[Prime[Range[pllim, plim]]]]]; Array[a, 7] (* James C. McMahon, Sep 17 2025 *)
CROSSREFS
KEYWORD
nonn,base,more
AUTHOR
Hugo Pfoertner, Sep 17 2025
STATUS
approved