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 A181075 #5 Apr 05 2021 20:40:29 %S A181075 1,3,10,71,1026,30912,2219946,339460991,112986526834,91234232847938, %T A181075 161113616883239406,619495336824891912596,5839092706931985694730356, %U A181075 124192664709851995516427897172,5681764626723349386531457243004370 %N A181075 a(n) = Sum_{k=0..n-1} C(n-1,k)^(k+1) * n/(n-k). %H A181075 G. C. Greubel, <a href="/A181075/b181075.txt">Table of n, a(n) for n = 1..75</a> %F A181075 L.g.f.: L(x) = Sum_{n>=1} [ Sum_{k>=0} C(n+k-1,k)^(k+1)*x^k ] *x^n/n. %F A181075 Logarithmic derivative of A181074. %e A181075 L.g.f.: L(x) = x + 3*x^2/2 + 10*x^3/3 + 71*x^4/4 + 1026*x^5/5 + ... %e A181075 which equals the series: %e A181075 L(x) = (1 + x + x^2 + x^3 + x^4 + x^5 + x^6 +...)*x %e A181075 + (1 + 2^2*x + 3^3*x^2 + 4^4*x^3 + 5^5*x^4 + 6^6*x^5 + ...)*x^2/2 %e A181075 + (1 + 3^2*x + 6^3*x^2 + 10^4*x^3 + 15^5*x^4 + 21^6*x^5 + ...)*x^3/3 %e A181075 + (1 + 4^2*x + 10^3*x^2 + 20^4*x^3 + 35^5*x^4 + 56^6*x^5 + ...)*x^4/4 %e A181075 + (1 + 5^2*x + 15^3*x^2 + 35^4*x^3 + 70^5*x^4 + 126^6*x^5 + ...)*x^5/5 %e A181075 + (1 + 6^2*x + 21^3*x^2 + 56^4*x^3 + 126^5*x^4 + 252^6*x^5 + ...)*x^6/6 %e A181075 + (1 + 7^2*x + 28^3*x^2 + 84^4*x^3 + 210^5*x^4 + 462^6*x^5 + ...)*x^7/7 + ... %e A181075 Exponentiation yields the g.f. of A181074: %e A181075 exp(L(x)) = 1 + x + 2*x^2 + 5*x^3 + 23*x^4 + 231*x^5 + 5405*x^6 + ... %t A181075 Table[Sum[Binomial[n-1, k]^(k+1)*n/(n-k), {k,0,n-1}], {n,25}] (* _G. C. Greubel_, Apr 05 2021 *) %o A181075 (PARI) {a(n)=sum(k=0, n-1, binomial(n-1, k)^(k+1)*n/(n-k))} %o A181075 (PARI) {a(n)=n*polcoeff(sum(m=1, n, sum(k=0, n, binomial(m+k-1,k)^(k+1)*x^k)*x^m/m)+x*O(x^n), n)} %o A181075 (Magma) [(&+[Binomial(n-1, k)^(k+1)*n/(n-k): k in [0..n-1]]): n in [1..25]]; // _G. C. Greubel_, Apr 05 2021 %o A181075 (Sage) [sum(binomial(n-1,k)^(k+1)*n/(n-k) for k in (0..n-1)) for n in (1..25)] # _G. C. Greubel_, Apr 05 2021 %Y A181075 Cf. A181076 (exp), variants: A181077, A181079. %K A181075 nonn %O A181075 1,2 %A A181075 _Paul D. Hanna_, Oct 02 2010