OFFSET
0,2
COMMENTS
The following identity can be easily verified using Maple's SumTools:-Summation procedure: for n >= 1, A005810(n) = binomial(4*n,n) = Sum_{k = 0..3*n} n/(n + k)*binomial(n + k,k).
The binomial coefficients A005810(n) are known to satisfy the supercongruences A005810(n*p^r) == A005810(n*p^(r-1)) (mod p^(3*r)) for primes p >= 5 and positive integers n and r (see Meštrović, equation 39).
Calculation suggests that the present sequence satisfies the same congruences.
Conjecture: the supercongruences a(n*p^r) == a(n*p^(r-1)) (mod p^(3*r)) hold for primes p >= 5 and positive integers n and r.
More generally, for m a positive integer, define a sequence u_m by setting u_m(n) = Sum_{k = 0..m*n} n/(n + 2*k)*binomial(n + 2*k,k) for n >= 1.
LINKS
Paolo Xausa, Table of n, a(n) for n = 0..475
R. Meštrović, Wolstenholme's theorem: Its Generalizations and Extensions in the last hundred and fifty years (1862--2012), arXiv:1111.3057 [math.NT], 2011.
FORMULA
a(n) ~ 7^(7*n + 3/2) / (37 * sqrt(Pi*n) * 2^(8*n + 3/2) * 3^(3*n + 1/2)). - Vaclav Kotesovec, Mar 15 2022
EXAMPLE
Examples of supercongruences:
a(11) - a(1) = 1205644823097085684641 - 9 = (2^3)*3*(11^3)*43*2887*5059* 60096637 == 0 (mod 11^3)
a(3*5) - a(3) = 207499462144488863314062180035 - 58785 = 2*(5^4)*1801* 4959701*18583938263214197 == 0 (mod 5^4)
MATHEMATICA
nterms=25; Join[{1}, Table[Sum[n/(n+2k)Binomial[n+2k, k], {k, 0, 3n}], {n, nterms-1}]] (* Paolo Xausa, Apr 10 2022 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Peter Bala, Mar 10 2022
STATUS
approved