OFFSET
1,2
COMMENTS
Originally defined as the first column of A027448, but now contains numerator in reduced form (cf. A329122). - Sean A. Irvine, Nov 05 2019
LINKS
Donal F. Connon, Some series and integrals involving the Riemann zeta function, binomial coefficients and the harmonic numbers. Vol. II(a), arXiv:0710.4023 [math.HO], 2007-2008.
Jerry Metzger and Thomas Richards, A Prisoner Problem Variation, Journal of Integer Sequences, Vol. 18 (2015), Article 15.2.7.
Javier Sesma, The Roman harmonic numbers revisited, Journal of Number Theory Vol. 180, Nov. 2017, pp. 544-565; arXiv:1702.03718v2 [math.NT], 2017.
FORMULA
Numerators of sequence a(1,n) in (a(i,j))^4 where a(i,j) = 1/i if j <= i, 0 if j > i.
Numerators of (H(n,1)^3 + 3*H(n,1)*H(n,2) + 2*H(n,3))/(6*n) = ((gamma+Psi(n+1))^3 + 3*(gamma+Psi(n+1))*(1/6*Pi^2 - Psi(1, n+1)) + 2*Zeta(3) + Psi(2, n+1))/(6*n), where H(n, m) = Sum_{i=1..n} 1/i^m are generalized harmonic numbers. - Vladeta Jovovic, Aug 10 2002
From Groux Roland, Feb 11 2011: (Start)
For n>=1, (H(n,1)^3 + 3*H(n,1)*H(n,2) + 2*H(n,3))/(6*n) = -(1/6)*Integral_{x=0..1} x^(n-1)*log^3(1-x) dx = (1/n)*Sum_{j=1..n} (H(n,1) - H(j-1,1))*H(j,1)/j.
For every k>=1 the first column of (a(i,j))^k is the binomial transform of (-1)^n/(n+1)^k.
Proof: the sequence S(n,k) = ((-1)^k/k!)*Integral_{x=0..1} x^(n-1)*log^k(1-x) dx gives the binomial transform of (-1)^n/(n+1)^(k+1) and can be evaluated by parts with S(n,k) = (1/n)*Sum_{j=1..k} S(j,k-1) according to the generation of the first column of (a(i,j))^k. (End)
From Peter Bala, Dec 04 2025: (Start)
a(n) = numerator(c_3(n)), where c_1(n) = Sum_{k = 1..n} 1/k (the harmonic numbers) and c_(i+1)(n) = Sum_{k = 1..n} c_i(k)/k for i >= 1.
The o.g.f. Sum_{n >= 1} c_3(n)*x^n = 1/(1 - x) * Sum_{n >= 1} (-1)^(n+1)/n^3 * (x/(1 - x))^n.
The e.g.f. Sum_{n >= 1} c_3(n)*x^n/n! = exp(x) * Sum_{n >= 1} (-1)^(n+1)/n^3 * x^n/n!.
a(n) = numerator( Sum_{k = 1..n} (-1)^(k+1)/k^3 * binomial(n, k) ). (End)
MAPLE
seq( numer(add((-1)^(k+1)/k^3 * binomial(n, k), k = 1..n)), n = 1..20 ); # Peter Bala, Dec 04 2025
MATHEMATICA
a[n_] := -1/6 Integrate[x^(n-1) Log[1-x]^3, {x, 0, 1}] // Numerator;
Table[a[n], {n, 1, 16}] (* Jean-François Alcover, Aug 06 2018 *)
PROG
(PARI) a(n) = numerator(sum(k = 1, n, (-1)^(k+1)/k^3 * binomial(n, k) )); \\ Michel Marcus, Dec 11 2025
CROSSREFS
KEYWORD
nonn,easy,frac
AUTHOR
EXTENSIONS
Corrected by Vladeta Jovovic, Aug 10 2002
Title changed by Sean A. Irvine, Nov 05 2019
STATUS
approved
