Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).
%I #9 Sep 03 2020 13:21:01
%S 1,0,1,1,1,11,39,114,303,759,1823,4260,9751,21965,48860,107580,234885,
%T 509223,1097356,2352534,5020718,10672737,22608081,47741381,100533203,
%U 211167291,442536359,925476274,1931759668,4025133578,8373495648,17393448283,36079810546
%N Number of digits in the base 10 representation of floor(Bernoulli(2^n)).
%t BernDigits[n_] := IntegerLength[Floor[BernoulliB[n]]];
%t Table[BernDigits[2^n], {n, 0, 14}]
%K nonn,base
%O 0,6
%A _Peter Luschny_, Sep 03 2020