A176477 a(1)=2; for n >= 2, (2n+1)^3*a(n) = 32n^3*a(n-1) + (21n^3 + 22n^2 + 8n + 1)*binomial(2n-1,n)^4.
2, 181, 23488, 3625081, 619898336, 113451041232, 21790823094272, 4339409873332321, 888730714063587232, 186141207745025911376, 39707252850926474171392, 8600444322930062324576656
Offset: 1
Keywords
Examples
For n=2 we have a(2) = (32*2^3*a(1) + (21*2^3 + 22*2^2 + 8*2 + 1)*binomial(2*2-1,2)^4)/(2*2 + 1)^3 = 181.
Links
- Kasper Andersen, Re: A somewhat surprising conjecture
- Jesús Guillera, About a new kind of Ramanujan-type series, Experiment. Math. 12(2003), 507-510.
- Zhi-Wei Sun, Open Conjectures on Congruences, preprint, arXiv:0911.5665.
- Zhi-Wei Sun, A somewhat surprising conjecture
- Zhi-Wei Sun, Re: A somewhat surprising conjecture
Programs
-
Mathematica
u[n_]:=u[n]=((21n^3+22n^2+8n+1)Binomial[2n-1,n]^4+32*n^3*u[n-1])/((2n+1)^3) u[1]=2 Table[u[n],{n,1,50}]
Formula
a(n) = (Sum_{k=0..n} (21k^3 + 22k^2 + 8k + 1)*256^(n-k)*binomial(2k,k)^7) / (16(2n+1)^3*binomial(2n,n)^3).
Comments