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 A222523 #7 Jan 15 2025 19:54:51 %S A222523 1,2,16,208,3930,97956,3038968,112911296,4889301222,241822567180, %T A222523 13450863716048,831128810329632,56483233790927556,4187162929534240488, %U A222523 336244786874092579920,29077531985735270053632,2694076376135933879002566,266245292488900189811625612,27956094249950913890814701248 %N A222523 O.g.f.: Sum_{n>=0} (n^2+n+1)^n * exp(-(n^2+n+1)*x) * x^n / n!. %F A222523 a(n) = 1/n! * [x^n] Sum_{k>=0} (k^2+k+1)^k * x^k / (1 + (k^2+k+1)*x)^(k+1). %F A222523 a(n) = 1/n! * Sum_{k=0..n} (-1)^(n-k)*binomial(n,k) * (k^2+k+1)^n. %e A222523 O.g.f.: A(x) = 1 + 2*x + 16*x^2 + 208*x^3 + 3930*x^4 + 97956*x^5 +... %e A222523 where %e A222523 A(x) = exp(-x) + 3*x*exp(-3*x) + 7^2*exp(-7*x)*x^2/2! + 13^3*exp(-13*x)*x^3/3! + 21^4*exp(-21*x)*x^4/4! + 31^5*exp(-31*x)*x^5/5! +... %e A222523 is a power series in x with integer coefficients. %o A222523 (PARI) {a(n)=polcoeff(sum(k=0, n, (k^2+k+1)^k*exp(-(k^2+k+1)*x +x*O(x^n))*x^k/k!), n)} %o A222523 for(n=0, 25, print1(a(n), ", ")) %o A222523 (PARI) {a(n)=(1/n!)*polcoeff(sum(k=0, n, (k^2+k+1)^k*x^k/(1+(k^2+k+1)*x +x*O(x^n))^(k+1)), n)} %o A222523 for(n=0, 20, print1(a(n), ", ")) %o A222523 (PARI) {a(n)=1/n!*sum(k=0, n, (-1)^(n-k)*binomial(n, k)*(k^2+k+1)^n)} %o A222523 for(n=0, 20, print1(a(n), ", ")) %Y A222523 Cf. A217900, A217901. %K A222523 nonn %O A222523 0,2 %A A222523 _Paul D. Hanna_, Feb 24 2013