login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A357673 a(n) = 4*Sum_{k = 0..2*n} binomial(n+k-1,k) + 3*Sum_{k = 0..2*n} binomial(n+k-1,k)^2. 6
7, 21, 225, 5124, 162657, 5812521, 219004812, 8516056500, 338508840801, 13679415485805, 559978704877725, 23162632151271480, 966309241173439500, 40602415885424806824, 1716435895297948558812, 72941388509291664563124, 3113826813351114598588257, 133458673478315967012049245 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
Conjectures:
1) a(p) == a(1) (mod p^5) for all primes p >= 3 (checked up to p = 499).
2) For r >= 2, and all primes p >= 3, a(p^r) == a(p^(r-1)) ( mod p^(3*r+3) ).
3) More generally, let m be a positive integer and set u(n) = 2*m*Sum_{k = 0..m*n} binomial(n+k-1,k) + (m + 1)*Sum_{k = 0..m*n} binomial(n+k-1,k)^2. Then the sequence {u(n)} satisfies the supercongruence u(p) == u(1) (mod p^5) for all primes p >= 7. This is the case m = 2. See A357673 for the case m = 1.
4) For r >= 2, and all primes p >= 5, u(p^r) == u(p^(r-1)) ( mod p^(3*r+3) ).
LINKS
FORMULA
a(n) = 4*A005809(n) + 3*Sum_{k = 0..2*n} binomial(n+k-1,k)^2.
EXAMPLE
Examples of supercongruences:
a(17) - a(1) = 133458673478315967012049245 - 21 = (2^3)*3*7*(17^5)*61*109*4441*86491*219071 == 0 (mod 17^5).
a(25) - a(5) = 1681058690656849873108154414589433546896 - 5812521 = 3*(5^9)*17*124471*39410141*65963867*52155532801 == 0 (mod 5^9).
MAPLE
seq(add( 4*binomial(n+k-1, k) + 3*binomial(n+k-1, k)^2, k = 0..2*n ), n = 0..20);
MATHEMATICA
Table[4 Sum[Binomial[n+k-1, k], {k, 0, 2n}]+3*Sum[Binomial[n+k-1, k]^2, {k, 0, 2n}], {n, 0, 20}] (* Harvey P. Dale, Oct 29 2022 *)
PROG
(PARI) a(n) = 4*sum(k = 0, 2*n, binomial(n+k-1, k)) + 3*sum(k = 0, 2*n, binomial(n+k-1, k)^2); \\ Michel Marcus, Oct 24 2022
CROSSREFS
Sequence in context: A084711 A183938 A060146 * A111878 A133279 A192734
KEYWORD
nonn,easy
AUTHOR
Peter Bala, Oct 11 2022
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 01:35 EDT 2024. Contains 371964 sequences. (Running on oeis4.)