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.

A202989 E.g.f: Sum_{n>=0} 3^(n^2) * exp(3^n*x) * x^n/n!.

This page as a plain text file.
%I A202989 #17 Jun 05 2019 01:50:34
%S A202989 1,4,100,21952,45212176,864866612224,151334226289000000,
%T A202989 240066313618039143841792,3437872835498096514323500400896,
%U A202989 443629285048033016198674962874808664064,515464807019389919369209932597753906250000000000
%N A202989 E.g.f: Sum_{n>=0} 3^(n^2) * exp(3^n*x) * x^n/n!.
%C A202989 E.g.f. series identity: Sum_{n>=0} m^n * q^(n^2) * exp(b*q^n*x) * x^n/n! = Sum_{n>=0} (m*q^n + b)^n * x^n/n! for all q, m, b.
%C A202989 O.g.f. series identity: Sum_{n>=0} m^n * q^(n^2) * x^n/(1-b*q^n*x)^(n+1) = Sum_{n>=0} (m*q^n + b)^n * x^n for all q, m, b.
%F A202989 a(n) = (3^n + 1)^n.
%F A202989 O.g.f.: Sum_{n>=0} 3^(n^2) * x^n/(1 - 3^n*x)^(n+1).
%e A202989 E.g.f.: A(x) = 1 + 4*x + 100*x^2/2! + 21952*x^3/3! + 45212176*x^4/4! +..
%e A202989 By the series identity, the e.g.f.:
%e A202989 A(x) = exp(x) + 3*exp(3*x)*x + 3^4*exp(3^2*x)*x^2/2! + 3^9*exp(3^3*x)*x^3/3! +...
%e A202989 expands into:
%e A202989 A(x) = 1 + 4*x + 10^2*x^2/2! + 28^3*x^3/3! + 82^4*x^4/4! + 244^5*x^5/5! +...+ (3^n+1)^n*x^n/n! +...
%o A202989 (PARI) {a(n, q=3, m=1, b=1)=(m*q^n + b)^n}
%o A202989 (PARI) {a(n, q=3, m=1, b=1)=n!*polcoeff(sum(k=0, n, m^k*q^(k^2)*exp(b*q^k*x+x*O(x^n))*x^k/k!), n)}
%o A202989 (PARI) {a(n, q=3, m=1, b=1)=polcoeff(sum(k=0,n,m^k*q^(k^2)*x^k/(1-b*q^k*x +x*O(x^n))^(k+1)),n)}
%Y A202989 Cf. A165327, A060613, A244004, A136516, A326013.
%K A202989 nonn
%O A202989 0,2
%A A202989 _Paul D. Hanna_, Dec 26 2011