OFFSET
1,3
COMMENTS
The old definition (which did not match the data) was "Number of digits in the numerators of partial sums for Liouville's constant, read as base-2 (binary) numbers (A145572)."
LINKS
Kevin Ryde, Table of n, a(n) for n = 1..300
FORMULA
a(n) = A034887(n!).
MAPLE
Digits := 900: # for n <= 300
a := n -> ceil(exp(lnGAMMA(n + 1))*log10(2)):
seq(a(n), n = 1..300); # Peter Luschny, Apr 18 2024
MATHEMATICA
Array[ Floor[#! Log10@2 + 1] &, 22]
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Wolfdieter Lang and Robert G. Wilson v, Aug 09 2018
EXTENSIONS
Better definition suggested by Martin Renner, Mar 24 2024
STATUS
approved