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 A259335 #19 Jul 16 2024 11:34:26 %S A259335 1,7,61,611,6686,77729,944245,11859355,152893720,2013070126, %T A259335 26967817306,366542344117,5043651762826,70138959074461, %U A259335 984384594022117,13927418363218955,198459156018467084,2845950809029225472,41044332341739034032,594983281327999736694 %N A259335 a(n) = ( Sum_{k=0..n} binomial(2*n, k)^2 * (binomial(2*n, k+1) - binomial(2*n, k-1)) )/(n*binomial(2*n, n)). %H A259335 Seiichi Manyama, <a href="/A259335/b259335.txt">Table of n, a(n) for n = 1..835</a> %H A259335 H. W. Gould, <a href="http://www.jstor.org/stable/2318079">Problem E2384</a>, Amer. Math. Monthly, 79 (1972), p. 1034. %H A259335 D. Zeitlin & N. J. A. Sloane, <a href="/A259335/a259335.pdf">Correspondence, 1974 & 1991</a> %F A259335 a(n) = (1/(n+1)) * Sum_{k=0..n} (k/(n+k)) * binomial(n+k,k)^2. - _Seiichi Manyama_, Jul 16 2024 %p A259335 f:=proc(n) local b; %p A259335 b:=binomial; %p A259335 add(b(2*n,k)^2*(b(2*n,k+1)-b(2*n,k-1)),k=0..n)/(n*b(2*n,n)); %p A259335 end; %o A259335 (PARI) a(n) = sum(k=0, n, k/(n+k)*binomial(n+k, k)^2)/(n+1); \\ _Seiichi Manyama_, Jul 16 2024 %K A259335 nonn %O A259335 1,2 %A A259335 _N. J. A. Sloane_, Jun 25 2015