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 A075798 #10 Jan 17 2014 05:38:48 %S A075798 1,1,1,1,2,1,1,6,6,1,1,12,16,12,1,1,20,35,35,20,1,1,30,66,84,66,30,1, %T A075798 1,42,112,175,175,112,42,1,1,56,176,328,400,328,176,56,1,1,72,261,567, %U A075798 819,819,567,261,72,1,1,90,370,920,1540,1820,1540,920,370,90,1,1,110,506,1419,2706,3696,3696,2706,1419,506,110,1,1,132,672 %N A075798 Triangle T(n,k) = f(n,k,n-1), n >= 0, 0 <= k <= n, where f is given below. %H A075798 Michel Lassalle, <a href="http://arXiv.org/abs/math.CO/0210208">A new family of positive integers</a> %F A075798 f(n, p, k) = binomial(n, k)*hypergeom([1-k, -p, p-n], [1-n, 1], 1). %e A075798 1; 1,1; 1,2,1; 1,6,6,1; ... %p A075798 f := proc(n,p,k) convert( binomial(n,k)*hypergeom([1-k,-p,p-n],[1-n,1],1), `StandardFunctions`); end; %t A075798 f[n_, p_, k_] := Binomial[n, k]*HypergeometricPFQ[{1 - k, -p, p-n}, {1-n, 1}, 1]; t[n_, n_] = t[_, 0] = 1; t[n_, k_] := f[n, k, n-1]; Table[t[n, k], {n, 0, 12}, {k, 0, n}] // Flatten (* _Jean-François Alcover_, Jan 17 2014 *) %Y A075798 Cf. A014410 and A007318 for f(n, k, n), A075779 and A075798 for f(n, k, n-1) and A075780 and A075837 for f(n, k, n-2). %K A075798 nonn,tabl %O A075798 1,5 %A A075798 _N. J. A. Sloane_, Oct 17 2002