A211600 a(n) = (binomial(p^n, p^(n-1)) - binomial(p^(n-1), p^(n-2))) / p^(3n-3) for p = 2.
1, 25, 146745, 55927250376633, 91366371314728099305354933301689, 2750710880016902131123422793322699970110063817946068739768171777481145
Offset: 3
Examples
a(3) = 1 is the difference between central binomials C(8,4) - C(4,2) = 70 - 6 = 64 divided by 2^(3*2 - 3) = 64.
References
- D. B. Fuks and Serge Tabachnikov, Mathematical Omnibus: Thirty Lectures on Classic Mathematics, American Mathematical Society, 2007. Lecture 2. Arithmetical Properties of Binomial Coefficients, pages 27-44
Links
- D. B. Fuks and M. B. Fuks, Arithmetics of binomial coefficients, Kvant 6 (1970), 17-25. (in Russian)
- A. I. Shirshov, On one property of binomial coefficients, Kvant 10 (1971), 16-20. (in Russian)
Programs
-
Maple
A211600:=n->(binomial(2^n, 2^(n - 1)) - binomial(2^(n - 1), 2^(n - 2))) / 2^(3*n - 3): seq(A211600(n), n=3..9); # Wesley Ivan Hurt, Apr 25 2017
-
Mathematica
p = 2; Table[(Binomial[p^n, p^(n - 1)] - Binomial[p^(n - 1), p^(n - 2)]) / 2^(3n - 3), {n, 3, 9}]
Comments