A179537 a(n) = Sum_{k=0..n} binomial(n,k)^2*binomial(n-k,k)^2*(-16)^k.
1, 1, -63, -575, 6913, 224001, 420801, -69020223, -918270975, 14596918273, 511845045697, 336721812417, -198449271643391, -2498857696947455, 51614254703660481, 1666776235855331265, -1588877076116525055
Offset: 0
Keywords
Examples
For n=2 we have a(2)=1+2^2*(-16)=-63.
Links
- Zhi-Wei Sun, Open Conjectures on Congruences, preprint, arXiv:0911.5665 [math.NT], 2009-2011.
- Zhi-Wei Sun, On Apery numbers and generalized central trinomial coefficients, preprint, arXiv:1006.2776 [math.NT], 2010-2011.
Programs
-
Mathematica
a[n_]:=Sum[Binomial[n,k]^2Binomial[n-k,k]^2*(-16)^k,{k,0,n}] Table[a[n],{n,0,25}]
Comments