OFFSET
0,1
COMMENTS
This constant is normal in the continued fraction sense since its continued fraction coefficients follow the Gauss-Kuzmin distribution by construction. - Jwalin Bhatt, Jan 09 2026
LINKS
Jwalin Bhatt, Table of n, a(n) for n = 0..10000
FORMULA
EXAMPLE
0.5815803358828329856145006072280655247763056696200923013621215551576710...
PROG
(Python) # Using `sample_gauss_kuzmin_distribution` function from A084580.
from sympy import floor, continued_fraction_convergents
from collections import deque
from os.path import commonprefix
def reliable_digits_from_cf(coeffs, prec):
frac_lower, frac_upper = deque(continued_fraction_convergents(coeffs+[1]), maxlen=2)
order = 10**prec
trunc_lower = floor(frac_lower*order) / order
trunc_upper = floor(frac_upper*order) / order
return commonprefix([f'{trunc_lower:.{prec}f}'[2:], f'{trunc_upper:.{prec}f}'[2:]])
num_coeffs = 180
coeffs = [0] + sample_gauss_kuzmin_distribution(num_coeffs)
num = reliable_digits_from_cf(coeffs, prec=200)
A372869 = [int(d) for d in num]
CROSSREFS
KEYWORD
cons,nonn
AUTHOR
Jwalin Bhatt, Jul 04 2024
STATUS
approved
