OFFSET
-5,1
COMMENTS
The next term is too large to show above.
From Peter Munn, Feb 13 2025: (Start)
The underlying function continues similarly to any negative value.
Equivalently, a(n) is the least k such that log(log(k)) > n.
(End)
LINKS
Amiram Eldar, Table of n, a(n) for n = -5..7
FORMULA
a(n) = A096232(n) + 1. - Peter Munn, Feb 13 2025
MATHEMATICA
Ceiling[E^(E^Range[-5, 5])] (* Harvey P. Dale, Nov 04 2019 *)
PROG
(Python)
from sympy import E
def a(n): return int(E**(E**n)) + 1
print([a(n) for n in range(-5, 6)]) # Michael S. Branicky, Mar 16 2021
CROSSREFS
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Aug 15 2004
EXTENSIONS
Terms prepended for search purposes by Peter Munn, Feb 13 2025
STATUS
approved