cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A268150 A double binomial sum involving absolute values.

This page as a plain text file.
%I A268150 #22 Feb 27 2023 08:03:41
%S A268150 0,8,2496,177120,7616000,255780000,7410154752,194544814464,
%T A268150 4760448675840,110493063252000,2461297261280000,53051182041906048,
%U A268150 1113060644163127296,22833886572836393600,459594580755139200000,9100826722891800000000,177680489488222659379200,3426237501864596491802400
%N A268150 A double binomial sum involving absolute values.
%C A268150 A fast algorithm follows from Lemma 1 of Brent et al. article.
%H A268150 Richard P. Brent, Hideyuki Ohtsuka, Judy-anne H. Osborn, Helmut Prodinger, <a href="http://arxiv.org/abs/1411.1477">Some binomial sums involving absolute values</a>, arXiv:1411.1477v2 [math.CO], 2016.
%F A268150 a(n) = Sum_{k=-n..n} (Sum_{l=-n..n} binomial(2*n, n+k)*binomial(2*n, n+l)*abs(k^2 - l^2)^3).
%F A268150 Conjecture D-finite with recurrence -(4621*n-8921)*(n-1)^2*a(n) +4*(148256*n^3 -1055204*n^2 +2794799*n -2529792)*a(n-1) -64*(32443*n- 32400)*(2*n-3)*(2*n-5)*a(n-2)=0. - _R. J. Mathar_, Feb 27 2023
%p A268150 A268150 := proc(n)
%p A268150     add( add( binomial(2*n,n+k)*binomial(2*n,n+l)*abs(k^2-l^2)^3,l=-n..n),k=-n..n) ;
%p A268150 end proc:
%p A268150 seq(A268150(n),n=0..10) ; # _R. J. Mathar_, Feb 27 2023
%o A268150 (PARI) a(n) = sum(k=-n,n, sum(l=-n,n, binomial(2*n, n+k)*binomial(2*n, n+l)*abs(k^2 - l^2)^3));
%Y A268150 Cf. A000984, A002894, A166337, A254408, A268148.
%K A268150 easy,nonn
%O A268150 0,2
%A A268150 _Richard P. Brent_, Jan 27 2016