OFFSET
0,2
FORMULA
a(n) = 1 + floor(arccosh(10^(n^2))). - Jon E. Schoenfield, Jul 08 2021
EXAMPLE
For n = 4, a(4) = 38 because 38 is the smallest positive integer k such that cosh(k) > 10^(16): cosh(38) = 1.59...*10^16, which is greater than 10^(4^2), i.e., 10^16.
MATHEMATICA
a[0] = 1; a[n_] := Ceiling @ ArcCosh[10^(n^2)]; Array[a, 50, 0] (* Amiram Eldar, Jul 12 2021 *)
PROG
(PARI) a(n) = 1 + floor(acosh(10^(n^2))); \\ Michel Marcus, Aug 24 2021
CROSSREFS
KEYWORD
nonn,less
AUTHOR
Treanungkur Mal, Jul 08 2021
EXTENSIONS
More terms from Jinyuan Wang, Jul 08 2021
STATUS
approved