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.

A361304 Expansion of g.f. A(x) = Sum_{n>=0} d^n/dx^n x^(2*n) * (1 + x)^(4*n) / n!.

This page as a plain text file.
%I A361304 #7 Mar 09 2023 09:00:46
%S A361304 1,2,18,124,930,7146,55804,441312,3521898,28307510,228820086,
%T A361304 1858240956,15149110912,123905220292,1016261712240,8355494725376,
%U A361304 68842600563918,568266625104498,4698576694639306,38906632384471820,322596353513983626,2678048134387075560
%N A361304 Expansion of g.f. A(x) = Sum_{n>=0} d^n/dx^n x^(2*n) * (1 + x)^(4*n) / n!.
%F A361304 G.f. A(x) = Sum_{n>=0} a(n)*x^n may be defined by the following.
%F A361304 (1) A(x) = Sum_{n>=0} d^n/dx^n x^(2*n) * (1 + x)^(4*n) / n!.
%F A361304 (2) A(x) = d/dx Series_Reversion(x - x^2*(1 + x)^4).
%F A361304 (3) B(x - x^2*A(x)^3) = x where B(x) = x * exp( Sum_{n>=1} d^(n-1)/dx^(n-1) x^(2*n-1) * (1+x)^(4*n) / n! ) is the g.f. of A361306.
%F A361304 (4) a(n) = (n+1) * A361306(n+1) for n >= 0.
%e A361304 G.f.: A(x) = 1 + 2*x + 18*x^2 + 124*x^3 + 930*x^4 + 7146*x^5 + 55804*x^6 + 441312*x^7 + 3521898*x^8 + 28307510*x^9 + ...
%o A361304 (PARI) {Dx(n, F) = my(D=F); for(i=1, n, D=deriv(D)); D}
%o A361304 {a(n) = my(A=1); A = sum(m=0, n, Dx(m, x^(2*m)*(1+x +O(x^(n+1)))^(4*m)/m!)); polcoeff(A, n)}
%o A361304 for(n=0, 25, print1(a(n), ", "))
%o A361304 (PARI) /* Using series reversion (faster) */
%o A361304 {a(n) = my(A=1); A = deriv( serreverse(x - x^2*(1+x +O(x^(n+3)))^4 )); polcoeff(A, n)}
%o A361304 for(n=0, 25, print1(a(n), ", "))
%Y A361304 Cf. A361306, A214372.
%K A361304 nonn
%O A361304 0,2
%A A361304 _Paul D. Hanna_, Mar 08 2023