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.
%I A043000 #57 Sep 08 2022 08:44:55 %S A043000 2,4,7,9,11,13,16,19,21,23,25,27,29,31,35,37,39,41,43,45,47,49,51,54, %T A043000 56,59,61,63,65,67,70,72,74,76,79,81,83,85,87,89,91,93,95,97,99,101, %U A043000 103,106,108,110,112,114,116,118,120,122,124,126 %N A043000 Number of digits in all base-b representations of n, for 2 <= b <= n. %C A043000 From _A.H.M. Smeets_, Dec 14 2019: (Start) %C A043000 a(n)-a(n-1) >= 2 due to the fact that n = 10_n, so there is an increment of at least 2. If n can be written as a perfect power m^s, an additional +1 comes to it for the representation of n in each base m. %C A043000 For instance, for n = 729 we have 729 = 3^6 = 9^3 = 27^2, so there is an additional increment of 3. For n = 1296 we have 1296 = 6^4 = 36^2, so there is an additional increment of 2. For n = 4096 we have 4096 = 2^12 = 4^6 = 8^4 = 16^3= 64^2, so there is an additional increment of 5. (End) %H A043000 A.H.M. Smeets, <a href="/A043000/b043000.txt">Table of n, a(n) for n = 2..20000</a> %H A043000 Vaclav Kotesovec, <a href="/A043000/a043000.jpg">Plot of a(n)/(2*n) for n = 2..1000000</a> %F A043000 a(n) = Sum_{i=2..n} floor(log_i(i*n)); a(n) ~ 2*n. - _Vladimir Shevelev_, Jun 03 2011 [corrected by _Vaclav Kotesovec_, Apr 05 2021] %F A043000 a(n) = A070939(n) + A081604(n) + A110591(n) + ... + 1. - _R. J. Mathar_, Jun 04 2011 %F A043000 From _Ridouane Oudra_, Nov 13 2019: (Start) %F A043000 a(n) = Sum_{i=1..n-1} floor(n^(1/i)); %F A043000 a(n) = n - 1 + Sum_{i=1..floor(log_2(n))} floor(n^(1/i) - 1); %F A043000 a(n) = n - 1 + A255165(n). (End) %F A043000 If n is in A001597 then a(A001597(m)) - a(A001597(m)-1) = 2 + A253642(m), otherwise a(n) - a(n-1) = 2. - _A.H.M. Smeets_, Dec 14 2019 %e A043000 5 = 101_2 = 12_3 = 11_4 = 10_5. Thus a(5) = 3+2+2+2 = 9. %p A043000 A043000 := proc(n) add( nops(convert(n,base,b)),b=2..n) ; end proc: # _R. J. Mathar_, Jun 04 2011 %t A043000 Table[Total[IntegerLength[n,Range[2,n]]],{n,2,60}] (* _Harvey P. Dale_, Apr 23 2019 *) %o A043000 (Magma) [&+[Floor(Log(i,i*n)):k in [2..n]]:n in [1..70]]; // _Marius A. Burtea_, Nov 13 2019 %o A043000 (Python) %o A043000 def count(n,b): %o A043000 c = 0 %o A043000 while n > 0: %o A043000 n, c = n//b, c+1 %o A043000 return c %o A043000 n = 0 %o A043000 while n < 50: %o A043000 n = n+1 %o A043000 a, b = 0, 1 %o A043000 while b < n: %o A043000 b = b+1 %o A043000 a = a + count(n,b) %o A043000 print(n,a) # _A.H.M. Smeets_, Dec 14 2019 %o A043000 (PARI) a(n)=sum(b=2,n,#digits(n,b)) \\ _Jeppe Stig Nielsen_, Dec 14 2019 %o A043000 (PARI) a(n)= n-1 +sum(b=2,n,logint(n,b)) \\ _Jeppe Stig Nielsen_, Dec 14 2019 %o A043000 (PARI) a(n) = {2*n-2+sum(i=2, logint(n, 2), sqrtnint(n, i)-1)} \\ _David A. Corneth_, Dec 31 2019 %o A043000 (PARI) first(n) = my(res = vector(n)); res[1] = 2; for(i = 2, n, inc = numdiv(gcd(factor(i+1)[,2]))+1; res[i] = res[i-1]+inc); res \\ _David A. Corneth_, Dec 31 2019 %Y A043000 Cf. A001597, A043306, A068953, A191322, A253642, A255165. %K A043000 nonn,easy,base %O A043000 2,1 %A A043000 _Clark Kimberling_