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.
%I A191808 #7 Apr 19 2025 19:35:25 %S A191808 1,1,2,67,2941,327868,75504909,23827165139,14250056009694, %T A191808 12425294009958329,14645969719539739213,26039632087532302145593, %U A191808 61861506372519998418244631,188885323588779065057458593218 %N A191808 G.f. satisfies: A(x) = Sum_{n>=0} x^n*A(x)^(n^6). %e A191808 G.f.: A(x) = 1 + x + 2*x^2 + 67*x^3 + 2941*x^4 + 327868*x^5 +... %e A191808 where the g.f. satisfies: %e A191808 A(x) = 1 + x*A(x) + x^2*A(x)^64 + x^3*A(x)^729 + x^4*A(x)^4096 + x^5*A(x)^15625 + x^6*A(x)^46656 +...+ x^n*A(x)^(n^6) +... %o A191808 (PARI) {a(n)=local(A=1+x);for(i=1,n,A=1+sum(m=1,n,x^m*(A+x*O(x^n))^(m^6)));polcoeff(A,n)} %Y A191808 Cf. A107595, A191805, A191806, A191807. %K A191808 nonn %O A191808 0,3 %A A191808 _Paul D. Hanna_, Jun 16 2011