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 A257091 #26 Jun 18 2020 08:30:24 %S A257091 0,1,1,2,1,2,1,3,2,2,1,3,1,2,2,4,1,3,1,3,2,2,1,4,2,2,3,3,1,3,1,6,2,2, %T A257091 2,4,1,2,2,4,1,3,1,3,3,2,1,5,2,3,2,3,1,4,2,4,2,2,1,4,1,2,3,7,2,3,1,3, %U A257091 2,3,1,5,1,2,3,3,2,3,1,5,4,2,1,4,2,2,2,4,1,4,2,3,2,2,2,7,1,3,3,4 %N A257091 a(n) = log_5 (A256693(n)). %C A257091 a(n) is the logarithm to the base 5 of the denominator of the Dirichlet series of zeta(s)^(1/5). For details, see A256693. %H A257091 Robert Israel and Wolfgang Hintze, <a href="/A257091/b257091.txt">Table of n, a(n) for n = 1..10000</a> (up to 500 from Wolfgang Hintze) %H A257091 MathOverflow, <a href="http://mathoverflow.net/questions/238725/the-number-of-prime-factors-of-a-natural-number/238726#238726">The number of prime factors of a natural number</a>. %F A257091 5^a(n) = A256693(n). %F A257091 For n<=10000, if n = Product_i p_i^(e_i) is the prime factorization of n, a(n) = A001222(n) + Sum_i floor(e_i/5). - _Robert Israel_, May 13 2016 %F A257091 If n = Product_i p_i^(e_i) is the prime factorization of n, a(n) = Sum_{j >= 0} Sum_i floor(e_i/5^j). - _Robert Israel_, May 16 2016 %p A257091 F:= proc(n) local e,m; %p A257091 add(add(floor(e/5^m),m=0..floor(log[5](e))),e=map(t-> t[2],ifactors(n)[2])); %p A257091 end proc: %p A257091 seq(F(i),i=1..100); %t A257091 F[n_] := Sum[Sum[Floor[e/5^m], {m, 0, Floor[Log[5, e]]}], {e, FactorInteger[n][[All, 2]]}]; %t A257091 F[1] = 0; %t A257091 Array[F, 100] (* _Jean-François Alcover_, Jun 18 2020, after Maple *) %Y A257091 Cf. A046645 (k = 2, log_2), A257089 (k = 3, log_3), A257090 (k = 4, log_2), A257091 (k = 5, log_5). %K A257091 nonn %O A257091 1,4 %A A257091 _Wolfgang Hintze_, Apr 16 2015