OFFSET
1,2
COMMENTS
The first real root of the function defining A396201. See the illustration given there. The root is almost certainly transcendental.
EXAMPLE
1.632051669847577487674062617213577399061859...
PROG
(Python)
import mpmath
mpmath.mp.dps = 105
root = guess = 1.63
phi = (1 + mpmath.sqrt(5)) / 2
rhs = (27 + 7 * mpmath.sqrt(5)) / 22
f = lambda x: phi**(2*x) * mpmath.cos(mpmath.pi * x) - rhs
try:
root = mpmath.findroot(f, guess)
except ValueError as e:
root = 0
root_str = str(root)
", ".join(char for char in root_str if char.isdigit())
CROSSREFS
KEYWORD
nonn,cons
AUTHOR
Peter Luschny, May 27 2026
STATUS
approved
