The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A277060 a(n) = (1/2) * Sum_{k=0..n} (binomial(n,k) * binomial(n+k,k+1))^2 for n >= 0. 1
0, 1, 28, 729, 19376, 529575, 14835780, 424231465, 12338211520, 363931754949, 10862528888300, 327501958094003, 9959845931792784, 305175084350065267, 9412306255856822388, 291982561878565118025, 9104382992541189221120 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Conjecture: the supercongruences a(p-1) == 1 (mod p^4) holds for all primes p >= 5 and a(p^2-1) == 1 (mod p^5) holds for all primes p >= 3. - Peter Bala, Mar 22 2023
LINKS
FORMULA
a(n) = n^2 * A074635(n)/2.
From Peter Bala, Mar 22 2023: (Start)
a(n) = Sum_{k = 0..n-1} binomial(n+1,k)*binomial(n-1,k)*binomial(n+k,k)^2.
P-recursive: (n-1)^2*(3*n^2-6*n+2)*(n+1)^3*a(n) = (2*n-1)*(51*n^4-102*n^3+19*n^2+ 32*n-14)*n^2*a(n-1) - n^2*(n-2)*(3*n^2-1)*(n-1)^2*a(n-2) with a(0) = 0 and a(1) = 1.
a(n) ~ sqrt(12 + 17*sqrt(2)/2)*(17 + 12*sqrt(2))^n/(4*n^(3/2)*Pi^(3/2)). (End)
MAPLE
a := proc(n) option remember; if n = 0 then 0 elif n = 1 then 1 else ( (2*n-1)*(51*n^4-102*n^3+19*n^2+ 32*n-14)*n^2*a(n-1) - n^2*(n-2)*(3*n^2-1)*(n-1)^2*a(n-2) )/( (n-1)^2*(3*n^2-6*n+2)*(n+1)^3 ) end if; end:
seq(a(n), n = 0..20); # Peter Bala, Mar 22 2023
PROG
(PARI) a(n)=my(t=n); if(n<2, return(n)); sum(k=1, n, t*=(n-k+1)*(n+k)/k/(k+1); t^2, n^2)/2 \\ Charles R Greathouse IV, Nov 07 2016
CROSSREFS
Cf. 1/2 * Sum_{k=0..n} (binomial(n,k) * binomial(n+k,k+1))^m: A050151 (m=1), this sequence (m=2).
Sequence in context: A004293 A012808 A226991 * A229463 A097834 A162830
KEYWORD
nonn,easy
AUTHOR
Seiichi Manyama, Nov 07 2016
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 May 12 22:54 EDT 2024. Contains 372497 sequences. (Running on oeis4.)