%I #5 Sep 04 2012 21:22:45
%S 1,2,52,58640,3583098592,11584364000042912,2042518153012624794424576,
%T 20047892010468651075834167466942080,
%U 11138509206681372983092694151616405935206616064,354938139483847646086359348765071470756626699510545192807936
%N G.f.: A(x) = exp( Sum_{n>=1} A000172(n)^n*x^n/n ) where Franel number A000172(n) = Sum_{k=0..n} C(n,k)^3.
%e G.f.: A(x) = 1 + 2*x + 52*x^2 + 58640*x^3 + 3583098592*x^4 +...
%e where
%e log(A(x)) = 2*x + 10^2*x^2/2 + 56^3*x^3/3 + 346^4*x^4/4 + 2252^5*x^5/5 + 15184^6*x^6/6 + 104960^7*x^7/7 +...+ A000172(n)^n*x^n/n +...
%o (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)^m*x^m/m+x*O(x^n)))); polcoeff(A, n)}
%o for(n=0, 31, print1(a(n), ", "))
%Y Cf. A216355, A166990, A216352, A216353, A000172.
%K nonn
%O 0,2
%A _Paul D. Hanna_, Sep 04 2012