A142995 a(0) = 0, a(1) = 1, a(n+1) = (2*n^2 + 2*n + 3)*a(n) - n^4*a(n-1), n >= 1.
0, 1, 7, 89, 1836, 56164, 2390832, 135213840, 9809203968, 888117094656, 98167241088000, 13010123816064000, 2036436482119680000, 371699564417796096000, 78251077775510986752000
Offset: 0
References
- Bruce C. Berndt, Ramanujan's Notebooks Part II, Springer-Verlag.
Links
- Seiichi Manyama, Table of n, a(n) for n = 0..252
- R. Bacher, P. de la Harpe and B. Venkov, Séries de croissance et séries d'Ehrhart associées aux réseaux de racines, C. R. Acad. Sci. Paris, 325 (Series 1) (1997), 1137-1142.
- D. Bump, K. Choi, P. Kurlberg and J. Vaaler, A local Riemann hypothesis, I, Math. Zeit. 233, (2000), 1-19.
- N. Gogin and M. Hirvensalo, On the generating function of discrete Chebyshev polynomials, Turku Centre for Computer Science Technical Report No. 819, (2007), 1-8.
Crossrefs
Programs
-
Maple
p := n -> 2*n+1: a := n -> n!^2*p(n)*sum (1/(k^2*p(k-1)*p(k)), k = 1..n): seq(a(n), n = 0..20);
-
Mathematica
a[n_] := -1/6*n!^2*(2*n*(Pi^2-12) + Pi^2 - 6*(2*n+1)*PolyGamma[1, n+1]) // Simplify; Table[a[n], {n, 0, 14}] (* Jean-François Alcover, Mar 06 2013 *)
Formula
a(n) = n!^2*p(n)*Sum_{k = 1..n} 1/(k^2*p(k-1)*p(k)), where p(n) = 2*n+1. Recurrence: a(0) = 0, a(1) = 1, a(n+1) = (2*n^2 + 2*n + 3)*a(n) - n^4*a(n-1). The sequence b(n):= n!^2*p(n) satisfies the same recurrence with the initial conditions b(0) = 1, b(1) = 3. Hence we obtain the finite continued fraction expansion a(n)/b(n) = 1/(3 - 1^4/(7 - 2^4/(15 - 3^4/(27 - ... - (n-1)^4/(2*n^2 - 2*n + 3))))), for n >= 2. Lim_{n -> infinity} a(n)/b(n) = 1/(3 - 1^4/(7 - 2^4/(15 - 3^4/(27 - ... - n^4/((2*n^2 + 2*n + 3) - ...))))) = Sum_{k>=1} 1/(k^2*(4*k^2 - 1)) = 2 - zeta(2).
Comments