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.

Previous Showing 11-12 of 12 results.

A061204 (tau<=)_6(n).

Original entry on oeis.org

1, 7, 13, 34, 40, 76, 82, 138, 159, 195, 201, 327, 333, 369, 405, 531, 537, 663, 669, 795, 831, 867, 873, 1209, 1230, 1266, 1322, 1448, 1454, 1670, 1676, 1928, 1964, 2000, 2036, 2477, 2483, 2519, 2555, 2891, 2897, 3113, 3119, 3245, 3371, 3407, 3413
Offset: 1

Views

Author

Vladeta Jovovic, Apr 21 2001

Keywords

Comments

(tau<=)_k(n) = |{(x_1,x_2,...,x_k): x_1*x_2*...*x_k<=n}|, i.e. (tau<=)_k(n) is number of solutions to x_1*x_2*...*x_k<=n, x_i>0.

Crossrefs

Cf. tau_2(n): A000005, tau_3(n): A007425, tau_4(n): A007426, tau_5(n): A061200, tau_6(n): A034695, (unordered) 2-factorizations of n: A038548, (unordered) 3-factorizations of n: A034836, A001055, (tau<=)_2(n): A006218, (tau<=)_3(n): A061201, (tau<=)_4(n): A061202, (tau<=)_5(n): A061203.

Programs

  • Mathematica
    nmax = 50; tau4 = Table[DivisorSum[n, DivisorSigma[0, n/#]*DivisorSigma[0, #] &], {n, 1, nmax}]; tau5 = Table[Sum[tau4[[d]], {d, Divisors[n]}], {n, nmax}]; Accumulate[Table[Sum[tau5[[d]], {d, Divisors[n]}], {n, nmax}]] (* Vaclav Kotesovec, Sep 10 2018 *)

Formula

(tau<=)k(n)=Sum{i=1..n} tau_k(i). a(n)=partial sums of A034695.
a(n) = Sum_{k=1..n} tau_{5}(k) * floor(n/k), where tau_{5} is A061200. - Enrique Pérez Herrero, Jan 23 2013
a(n) ~ n*(log(n)^5/120 + (g/4 - 1/24)*log(n)^4 + (5*g^2/2 - g - g1 + 1/6)*log(n)^3 + (10*g^3 - 15*g^2/2 + (3 - 15*g1)*g + 3*g1 + 3*g2/2 - 1/2)*log(n)^2 + (15*g^4 - 20*g^3 + (15 - 60*g1)*g^2 + (30*g1 + 15*g2 - 6)*g + 15*g1^2 - 6*g1 - 3*g2 - g3 + 1)*log(n) + 6*g^5 - 15*g^4 + (20 - 60*g1)*g^3 + (60*g1 + 30*g2 - 15)*g^2 + (60*g1^2 - 30*g1 - 15*g2 - 5*g3 + 6)*g - 15*g1^2 + g1*(6 - 15*g2) + 3*g2 + g3 + g4/4 - 1), where g is the Euler-Mascheroni constant A001620 and g1, g2, g3, g4 are the Stieltjes constants, see A082633, A086279, A086280 and A086281. - Vaclav Kotesovec, Sep 10 2018

A242613 Decimal expansion of the sum of the alternating series tau(5), with tau(n) = Sum_{k>0} (-1)^k*log(k)^n/k.

Original entry on oeis.org

0, 2, 4, 5, 1, 4, 9, 0, 7, 6, 5, 6, 4, 0, 9, 7, 8, 2, 9, 0, 7, 4, 2, 2, 8, 0, 0, 6, 8, 6, 1, 3, 7, 1, 1, 0, 2, 8, 7, 5, 7, 0, 7, 0, 9, 2, 3, 7, 9, 1, 5, 0, 3, 7, 4, 2, 9, 0, 5, 1, 1, 2, 7, 2, 9, 8, 3, 7, 8, 8, 0, 0, 9, 9, 7, 5, 5, 3, 3, 5, 8, 9, 1, 5, 4, 6, 6, 2, 9, 4, 6, 0, 6, 2, 9, 3, 7, 4, 1, 7, 8
Offset: 0

Views

Author

Jean-François Alcover, May 19 2014

Keywords

Examples

			-0.02451490765640978290742280068613711...
		

References

  • Steven R. Finch, Mathematical Constants, Cambridge University Press, 2003, chapter 2.21, p. 168.

Crossrefs

Programs

  • Mathematica
    tau[n_] := -Log[2]^(n+1)/(n+1) + Sum[Binomial[n, k]*Log[2]^(n-k)*StieltjesGamma[k], {k, 0, n-1}]; Join[{0}, RealDigits[tau[5], 10, 100] // First]

Formula

tau(n) = -log(2)^(n+1)/(n+1) + Sum_(k=0..n-1) (binomial(n, k)*log(2)^(n-k)*gamma(k)).
tau(5) = gamma*log(2)^5 - (1/6)*log(2)^6 + 5*log(2)^4*gamma(1) + 10*log(2)^3*gamma(2) + 10*log(2)^2*gamma(3) + 5*log(2)*gamma(4).
Previous Showing 11-12 of 12 results.