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.

A124788 Triangle read by rows: expansion of (1+x*y)/(1-x^2*y^2-x^3*y^2).

This page as a plain text file.
%I A124788 #6 Aug 12 2015 02:19:14
%S A124788 1,0,1,0,0,1,0,0,1,1,0,0,0,1,1,0,0,0,0,2,1,0,0,0,0,1,2,1,0,0,0,0,0,1,
%T A124788 3,1,0,0,0,0,0,0,3,3,1,0,0,0,0,0,0,1,3,4,1,0,0,0,0,0,0,0,1,6,4,1,0,0,
%U A124788 0,0,0,0,0,0,4,6,5,1,0,0,0,0,0,0,0,0,1,4,10,5,1,0,0,0,0,0,0,0,0,0,1,10,10,6
%N A124788 Triangle read by rows: expansion of (1+x*y)/(1-x^2*y^2-x^3*y^2).
%C A124788 Row sums give A000931(n+5). Diagonal sums are A124789.
%F A124788 Number triangle T(n,k) = binomial(floor(k/2),n-k).
%F A124788 Column k has g.f. x^k*(1+x)^floor(k/2). - _Paul Barry_, Feb 01 2007
%e A124788 Triangle begins
%e A124788 1,
%e A124788 0, 1,
%e A124788 0, 0, 1,
%e A124788 0, 0, 1, 1,
%e A124788 0, 0, 0, 1, 1,
%e A124788 0, 0, 0, 0, 2, 1,
%e A124788 0, 0, 0, 0, 1, 2, 1,
%e A124788 0, 0, 0, 0, 0, 1, 3, 1,
%e A124788 0, 0, 0, 0, 0, 0, 3, 3, 1,
%e A124788 0, 0, 0, 0, 0, 0, 1, 3, 4, 1,
%e A124788 0, 0, 0, 0, 0, 0, 0, 1, 6, 4, 1
%p A124788 A124788 := proc(n,k) binomial(floor(k/2),n-k) ; end: for n from 0 to 20 do for k from 0 to n do printf("%d, ",A124788(n,k)) ; od ; od ; # _R. J. Mathar_, Feb 10 2007
%Y A124788 Cf. A124745.
%K A124788 easy,nonn,tabl
%O A124788 0,20
%A A124788 _Paul Barry_, Nov 07 2006
%E A124788 More terms from _R. J. Mathar_, Feb 10 2007