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 A182529 #6 Mar 12 2022 13:13:41 %S A182529 1,1,7,100,2438,90246,4702142,327233880,29271020760,3268118467608, %T A182529 445031112068232,72541135526581536,13936782476047959024, %U A182529 3115165518696599108976,801181037747755210248432,234835083029394312036638016,77797056535321496989078410624 %N A182529 E.g.f.: exp( Sum_{n>=1} x^n * Sum_{k=1..n} 1/k^2 ) = Sum_{n>=0} a(n)*x^n/n!^2. %e A182529 E.g.f.: A(x) = 1 + x + 7*x^2/2!^2 + 100*x^3/3!^2 + 2438*x^4/4!^2 + 90246*x^5/5!^2 +... %e A182529 such that %e A182529 log(A(x)) = x + x^2*(1+1/4) + x^3*(1+1/4+1/9) + x^4*(1+1/4+1/9+1/16) + x^5*(1+1/4+1/9+1/16+1/25) + x^6*(1+1/4+1/9+1/16+1/25+1/36) +... %o A182529 (PARI) {a(n)=n!^2*polcoeff(exp(sum(m=1, n+1, x^m*sum(k=1, m, 1/k^2)+x*O(x^n))), n)} %o A182529 for(n=0,20,print1(a(n),", ")) %Y A182529 Cf. A087761. %K A182529 nonn %O A182529 0,3 %A A182529 _Paul D. Hanna_, May 03 2012