cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A363832 Number of digits left of the radix point of n when written in base e using a greedy algorithm representation.

This page as a plain text file.
%I A363832 #21 Oct 24 2023 04:07:21
%S A363832 1,1,1,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,4,4,4,4,4,4,4,4,4,4,4,4,4,
%T A363832 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,5,5,5,5,5,5,5,5,5,5,5,5,5,
%U A363832 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5
%N A363832 Number of digits left of the radix point of n when written in base e using a greedy algorithm representation.
%C A363832 Essentially the same as A004233. - _R. J. Mathar_, Oct 23 2023
%H A363832 Paolo Xausa, <a href="/A363832/b363832.txt">Table of n, a(n) for n = 0..10000</a>
%H A363832 Wikipedia, <a href="https://en.wikipedia.org/wiki/Non-integer_base_of_numeration">Non-integer base of numeration</a>.
%F A363832 a(0) = 1; for n >= 1, a(n) = floor(log_e(n)) + 1.
%e A363832 a(10) = 3 because 10 in base e (102.11201...) has 3 digits before the radix point.
%t A363832 A363832[n_]:=Floor[Log[E,Max[n,1]]]+1;Array[A363832,100,0]
%Y A363832 Cf. A001113, A055642, A105116, A362692, A366721.
%K A363832 nonn,base
%O A363832 0,4
%A A363832 _Paolo Xausa_, Oct 19 2023