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.

A221973 G.f.: Sum_{n>=0} n! * x^n * Product_{k=1..n} (3 + k*x)/(1 + 3*k*x + k^2*x^2).

This page as a plain text file.
%I A221973 #6 Oct 21 2024 17:28:14
%S A221973 1,3,10,39,183,1026,6695,49623,411050,3763599,37757055,411894882,
%T A221973 4854301087,61459583007,831926801290,11989221944871,183273754945959,
%U A221973 2961997167865410,50462267599637975,903853088211536295,16980055625062979306,333846342195447641343
%N A221973 G.f.: Sum_{n>=0} n! * x^n * Product_{k=1..n} (3 + k*x)/(1 + 3*k*x + k^2*x^2).
%e A221973 G.f.: A(x) = 1 + 3*x + 10*x^2 + 39*x^3 + 183*x^4 + 1026*x^5 + 6695*x^6 +...
%e A221973 where
%e A221973 A(x) = 1 + x*(3+x)/(1+3*x+x^2) + 2!*x^2*(3+x)*(3+2*x)/((1+3*x+x^2)*(1+6*x+4*x^2)) + 3!*x^3*(3+x)*(3+2*x)*(3+3*x)/((1+3*x+x^2)*(1+6*x+4*x^2)*(1+9*x+9*x^2)) + 4!*x^4*(3+x)*(3+2*x)*(3+3*x)*(3+4*x)/((1+3*x+x^2)*(1+6*x+4*x^2)*(1+9*x+9*x^2)*(1+12*x+16*x^2)) +...
%o A221973 (PARI) {a(n)=polcoeff( sum(m=0, n, m!*x^m*prod(k=1, m, (3+k*x)/(1+3*k*x+k^2*x^2 +x*O(x^n))) ), n)}
%o A221973 for(n=0, 30, print1(a(n), ", "))
%Y A221973 Cf. A208237, A136127.
%K A221973 nonn
%O A221973 0,2
%A A221973 _Paul D. Hanna_, Feb 01 2013