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.

A221971 G.f.: A(x,y) = Sum_{n>=0} n! * x^n*y^n * Product_{k=1..n} (1 + k*x) / (1 + k*x*y + k^2*x^2*y).

This page as a plain text file.
%I A221971 #15 Apr 27 2016 12:05:44
%S A221971 1,0,1,0,1,1,0,0,4,1,0,0,3,11,1,0,0,0,27,26,1,0,0,0,17,148,57,1,0,0,0,
%T A221971 0,278,646,120,1,0,0,0,0,155,2590,2481,247,1,0,0,0,0,0,4073,18304,
%U A221971 8805,502,1,0,0,0,0,0,2073,58427,109699,29682,1013,1,0,0,0
%N A221971 G.f.: A(x,y) = Sum_{n>=0} n! * x^n*y^n * Product_{k=1..n} (1 + k*x) / (1 + k*x*y + k^2*x^2*y).
%H A221971 Paul D. Hanna, <a href="/A221971/b221971.txt">Rows n = 0..32, flattened.</a>
%F A221971 Row sums equal A208237.
%F A221971 Central terms equal A110501, the Genocchi numbers of first kind (unsigned).
%F A221971 Columns sums equal A005439, the Genocchi numbers of second kind.
%e A221971 Triangle begins:
%e A221971 1;
%e A221971 0, 1;
%e A221971 0, 1, 1;
%e A221971 0, 0, 4, 1;
%e A221971 0, 0, 3, 11, 1;
%e A221971 0, 0, 0, 27, 26, 1;
%e A221971 0, 0, 0, 17, 148, 57, 1;
%e A221971 0, 0, 0, 0, 278, 646, 120, 1;
%e A221971 0, 0, 0, 0, 155, 2590, 2481, 247, 1;
%e A221971 0, 0, 0, 0, 0, 4073, 18304, 8805, 502, 1;
%e A221971 0, 0, 0, 0, 0, 2073, 58427, 109699, 29682, 1013, 1;
%e A221971 0, 0, 0, 0, 0, 0, 80712, 614819, 590254, 96648, 2036, 1;
%e A221971 0, 0, 0, 0, 0, 0, 38227, 1665829, 5340996, 2948040, 307255, 4083, 1; ...
%o A221971 (PARI) {T(n,k)=polcoeff(polcoeff(sum(m=0, n,m!*x^m*y^m*prod(k=1, m, (1+k*x)/(1+k*x*y+k^2*x^2*y +x*O(x^n)))),n,x),k,y)}
%o A221971 for(n=0, 12, for(k=0, n, print1(T(n, k), ", ")); print(""))
%Y A221971 Cf. A208237 (row sums), A110501 (central terms), A005439 (column sums), A136126.
%K A221971 nonn,tabl
%O A221971 0,9
%A A221971 _Paul D. Hanna_, Feb 01 2013