OFFSET
1,2
COMMENTS
These orders determine the maximal numbers of unitary divisors valid for integers in given binary order ranges (see A046971).
LINKS
Michael De Vlieger, Table of n, a(n) for n = 1..10000
FORMULA
a(n) = A054850(n)+1, n >= 2.
EXAMPLE
The sixth primorial number is 2*3*5*7*11*13 = 30030, which is in the interval [16385, 32768] = [2^14 + 1, 2^15], so its binary order is a(6)=15. [corrected by Jon E. Schoenfield, May 13 2018]
MATHEMATICA
Table[Ceiling@ Log2[Times @@ Prime@ Range@ n], {n, 57}] (* Michael De Vlieger, Feb 05 2017 *)
PROG
(PARI) a(n)=logint(prod(i=1, n, prime(i))-1, 2)+1 \\ Charles R Greathouse IV, Feb 06 2017
CROSSREFS
KEYWORD
nonn
AUTHOR
STATUS
approved