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 A216353 #7 Jan 01 2025 14:40:03 %S A216353 1,8,532,62624,10964914,2399234384,609215149096,171739556144192, %T A216353 52316948995446679,16918106849112020088,5736533516906891508780, %U A216353 2021549577502367744673888,735516733692051220039803750,274907827442478316252748869104,105138174536582510069969443280760 %N A216353 G.f.: A(x) = exp( Sum_{n>=1} A000172(n)^3*x^n/n ) where Franel number A000172(n) = Sum_{k=0..n} C(n,k)^3. %e A216353 G.f.: A(x) = 1 + 8*x + 532*x^2 + 62624*x^3 + 10964914*x^4 + 2399234384*x^5 +... %e A216353 where %e A216353 log(A(x)) = 2^3*x + 10^3*x^2/2 + 56^3*x^3/3 + 346^3*x^4/4 + 2252^3*x^5/5 + 15184^3*x^6/6 + 104960^3*x^7/7 +...+ A000172(n)^3*x^n/n +... %o A216353 (PARI) {a(n)=local(A=1+x); for(i=1, n, A=exp(sum(m=1, n, sum(j=0, m, binomial(m, j)^3)^3*x^m*1^m/m+x*O(x^n)))); polcoeff(A, n)} %o A216353 for(n=0, 31, print1(a(n), ", ")) %Y A216353 Cf. A166990, A216352, A216354, A216355, A052144, A000172. %K A216353 nonn %O A216353 0,2 %A A216353 _Paul D. Hanna_, Sep 04 2012