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.

A214930 E.g.f. satisfies: A(x) = Sum_{n>=0} 1/n! * Product_{k=1..n} log(1 + x*A(x)^k).

Original entry on oeis.org

1, 1, 2, 9, 66, 650, 8250, 127519, 2318876, 48626556, 1154334060, 30589513350, 895415799960, 28693464851688, 999009599484624, 37554576369815400, 1516080931559327280, 65418533528228549744, 3004726893339734134128, 146370356574519380115240
Offset: 0

Views

Author

Paul D. Hanna, Mar 09 2013

Keywords

Examples

			E.g.f.: A(x) = 1 + x + 2*x^2/2! + 9*x^3/3! + 66*x^4/4! + 650*x^5/5! +...
where
A(x) = 1 + log(1+x*A(x)) + log(1+x*A(x))*log(1+x*A(x)^2)/2! + log(1+x*A(x))*log(1+x*A(x)^2)*log(1+x*A(x)^3)/3! + log(1+x*A(x))*log(1+x*A(x)^2)*log(1+x*A(x)^3)*log(1+x*A(x)^4)/4! +...
		

Crossrefs

Programs

  • PARI
    {a(n)=local(A=1+x);for(i=1,n,A=1+sum(m=1,n,prod(k=1,m,log(1+x*A^k+x*O(x^n)))/m!));n!*polcoeff(A,n)}
    for(n=0,20,print1(a(n),", "))