A143006 a(0) = 0, a(1) = 1, a(n+1) = (2*n+1)*(n^2+n+41)*a(n) - n^6*a(n-1).
0, 1, 129, 30251, 11129080, 5985956824, 4501140404544, 4577449694922432, 6130634638657941504, 10576998168036159614976, 23068077837238986190848000, 62571876653848665596203008000, 208106990164246904792046895104000
Offset: 0
References
- Bruce C. Berndt, Ramanujan's Notebooks Part II, Springer-Verlag.
Links
- Seiichi Manyama, Table of n, a(n) for n = 0..179
Programs
-
Maple
p := n -> (35*n^8 +140*n^7 +630*n^6 +1400*n^5 +2595*n^4 +3020*n^3 +2500*n^2 +1200*n +288)/288: a := n -> n!^3*p(n)*sum (1/(k^3*p(k-1)*p(k)), k = 1..n): seq(a(n), n = 0..13);
Formula
a(n) = n!^3*p(n)*sum {k = 1..n} 1/(k^3*p(k-1)*p(k)), where p(n) = (35*n^8 +140*n^7 +630*n^6 +1400*n^5 +2595*n^4 +3020*n^3 +2500*n^2 +1200*n +288)/288. Recurrence: a(0) = 0, a(1) = 1, a(n+1) = (2*n+1)*(n^2+n+41)*a(n) - n^6*a(n-1). The sequence b(n):= n!^3*p(n) satisfies the same recurrence with the initial conditions b(0) = 1, b(1) = 41. Hence we obtain the finite continued fraction expansion a(n)/b(n) = 1/(41- 1^6/(129- 2^6/(235- 3^6/(371-...- (n-1)^6/((2*n-1)*(n^2-n+41)))))), for n >=2. The behavior of a(n) for large n is given by lim n -> infinity a(n)/b(n) = sum {k = 1..inf} 1/(k^3*p(k-1)*p(k)) = 1/(41- 1^6/(129- 2^6/(235- 3^6/(371-...- n^6/((2*n+1)*(n^2+n+41)-...))))) = zeta(3) - (1 + 1/2^3 + 1/3^3 + 1/4^3), where the final equality follows from a result of Ramanujan; see [Berndt, Chapter 12, Entry 32(iii) at x = 4].
Comments