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 A172014 #7 Mar 12 2014 16:37:05 %S A172014 1,5,354,88153,48340622,46980371858,71465177189700,157019003242118337, %T A172014 471091863366049740694,1851713757075363098855542 %N A172014 A142459(2*n,n)/(n+1). %F A172014 a(n) = A142459(2*n,n)/(n+1). %t A172014 A[n_, 1] := 1; A[n_, n_] := 1; %t A172014 A[n_, k_] := (4*n - 4*k + 1)A[n - 1, k - 1] + (4*k - 3)A[n - 1, k]; %t A172014 a = Table[A[n, k], {n, 20}, {k, n}]; %t A172014 Table[a[[2*n + 1, n + 1]]/(n + 1), {n, 0, 9}] %Y A172014 Cf. A142459. %K A172014 nonn %O A172014 0,2 %A A172014 _Roger L. Bagula_, Nov 19 2010