A142988 a(1) = 1, a(2) = 3, a(n+2) = 3*a(n+1) + (n + 1)*(n + 3)*a(n).
1, 3, 17, 96, 696, 5448, 49752, 492480, 5457600, 65128320, 850296960, 11864240640, 178442611200, 2848854758400, 48517709184000, 872011090944000, 16589133517824000, 331426982928384000, 6966369015201792000
Offset: 1
References
- Bruce C. Berndt, Ramanujan's Notebooks Part II, Springer-Verlag.
Links
- Seiichi Manyama, Table of n, a(n) for n = 1..448
- D. Bump, K. Choi, P. Kurlberg and J. Vaaler, A local Riemann hypothesis, I, Math. Zeit. 233, (2000), 1-19.
- Hyun Kwang Kim, On Regular Polytope Numbers, Proc. Amer. Math. Soc., 131 (2003), 65-75.
Programs
-
Maple
a := n -> (n+2)!*sum ((-1)^(k+1)/(k*(k+1)*(k+1)), k = 1..n): seq(a(n), n = 1..20);
Formula
a(n) = (n + 2)!*Sum_{k = 1..n} (-1)^(k+1)/(k*(k + 1)*(k + 2)).
Recurrence: a(1) = 1, a(2) = 3, a(n+2) = 3*a(n+1) + (n + 1)*(n + 3)*a(n).
The sequence b(n) := (1/2)*(n + 2)!*p(n+2) satisfies the same recurrence with b(1) = 3, b(2) = 12.
Hence we obtain the finite continued fraction expansion a(n)/b(n) = 1/(3 + 1*3/(3 + 2*4/(3 + 3*5/(3 + ... + (n - 1)*(n + 1)/3)))), for n >= 2.
Limit_{n -> oo} a(n)/b(n) = 1/(3 + 1*3/(3 + 2*4/(3 + 3*5/(3 + ... + (n - 1)*(n + 1)/(3 + ...))))) = 2*Sum_{k >= 1} (-1)^(k+1)/(k*(k + 1)*(k + 2)) = 4*log(2) - 5/2.
Comments