login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

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.
1
2, 181, 23488, 3625081, 619898336, 113451041232, 21790823094272, 4339409873332321, 888730714063587232, 186141207745025911376, 39707252850926474171392, 8600444322930062324576656
OFFSET
1,1
COMMENTS
On Apr 06 2010, Zhi-Wei Sun introduced this sequence and conjectured that each term a(n) is a positive integer. He also guessed that a(n) is odd if and only if n = 2, 2^2, 2^3, .... It is easy to see that 16*(2n+1)^3*binomial(2n,n)^3*a(n) equals Sum_{k=0..n} (21k^3 + 22k^2 + 8k + 1)*256^(n-k)*binomial(2k,k)^7. Sun also conjectured that for any prime p > 5 we have Sum_{k=0..p-1} (21k^3 + 22k^2 + 8k + 1)*binomial(2k,k)^7/256^k == p^3 (mod p^8). It is also remarkable that Sum_{n>=1} 256^n*(21n^3 - 22n^2 + 8n - 1)/(n^7*binomial(2n,n)^7) = Pi^4/8 as conjectured by J. Guillera.
LINKS
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.
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).
EXAMPLE
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.
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}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Zhi-Wei Sun, Apr 18 2010
STATUS
approved