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.
%I A379084 #10 Dec 15 2024 06:45:55 %S A379084 1,2,10,62,394,2562,16966,113794,770458,5254658,36046470,248449104, %T A379084 1719175846,11935608518,83100064834,579994824042,4056746450106, %U A379084 28428354905268,199550820571858,1402832286126650,9875127071717694,69599814539512900,491081313666879968,3468458841769675496 %N A379084 a(n) = Sum_{k=0..floor(n/2)} binomial(2*n+k-1,k) * binomial(2*n+k,n-2*k). %F A379084 a(n) = [x^n] 1/( 1/(1 + x) - x^2 )^(2*n). %F A379084 a(n) == 0 (mod 2) for n>0. %o A379084 (PARI) a(n) = sum(k=0, n\2, binomial(2*n+k-1, k)*binomial(2*n+k, n-2*k)); %Y A379084 Cf. A379022, A379085. %K A379084 nonn %O A379084 0,2 %A A379084 _Seiichi Manyama_, Dec 15 2024