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.

A300597 O.g.f. A(x) satisfies: [x^n] exp( n^4 * A(x) ) = n^4 * [x^(n-1)] exp( n^4 * A(x) ) for n>=1.

This page as a plain text file.
%I A300597 #9 Jun 05 2018 17:42:34
%S A300597 1,8,2187,2351104,6153518125,31779658925496,287364845865893467,
%T A300597 4200677982722915635200,93566442152660422280250537,
%U A300597 3030525904161802498705606745000,137355046868929476532154243693393581,8436685562091750543736612601781557411328,683522945769518614776208838188411394718328617
%N A300597 O.g.f. A(x) satisfies: [x^n] exp( n^4 * A(x) ) = n^4 * [x^(n-1)] exp( n^4 * A(x) ) for n>=1.
%C A300597 Compare to: [x^n] exp( n^4 * x ) = n^3 * [x^(n-1)] exp( n^4 * x ) for n>=1.
%C A300597 It is remarkable that this sequence should consist entirely of integers.
%H A300597 Paul D. Hanna, <a href="/A300597/b300597.txt">Table of n, a(n) for n = 1..200</a>
%F A300597 O.g.f. equals the logarithm of the e.g.f. of A300596.
%e A300597 O.g.f.: A(x) = x + 8*x^2 + 2187*x^3 + 2351104*x^4 + 6153518125*x^5 + 31779658925496*x^6 + 287364845865893467*x^7 + 4200677982722915635200*x^8 + ...
%e A300597 where
%e A300597 exp(A(x)) = 1 + x + 17*x^2/2! + 13171*x^3/3! + 56479849*x^4/4! + 738706542221*x^5/5! + 22885801082965201*x^6/6! + 1448479282286023114807*x^7/7! + ... + A300596(n)*x^n/n! + ...
%e A300597 such that: [x^n] exp( n^4 * A(x) ) = n^4 * [x^(n-1)] exp( n^4 * A(x) ).
%o A300597 (PARI) {a(n) = my(A=[1]); for(i=1, n+1, A=concat(A, 0); V=Vec(Ser(A)^((#A-1)^4)); A[#A] = ((#A-1)^4*V[#A-1] - V[#A])/(#A-1)^4 ); polcoeff( log(Ser(A)), n)}
%o A300597 for(n=1, 20, print1(a(n), ", "))
%Y A300597 Cf. A300596, A296171, A300591, A300593, A300595.
%K A300597 nonn
%O A300597 1,2
%A A300597 _Paul D. Hanna_, Mar 09 2018