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 A188457 #46 Jun 13 2022 12:23:39 %S A188457 1,1,5,109,9449,3068281,3586048685,14668583277349,205716978569685329, %T A188457 9737002299093315531121,1536239893108209683958428885, %U A188457 799846636937376803320381186364509,1362900713950636674946135205457794784569 %N A188457 G.f.: 1 = Sum_{n>=0} a(n)*x^n/(1 + 3^n*x)^(n+1). %C A188457 G.f. satisfies a variant of an identity involving A003024: %C A188457 1 = Sum_{n>=0} A003024(n)*x^n/(1 + 2^n*x)^(n+1), %C A188457 where A003024(n) is the number of acyclic digraphs with n labeled nodes. %C A188457 a(n) is the number of acyclic 2-multidigraphs. Cf. A137435, A339768. - _Geoffrey Critzer_, Feb 21 2021 %H A188457 Seiichi Manyama, <a href="/A188457/b188457.txt">Table of n, a(n) for n = 0..62</a> %F A188457 G.f.: 1 = Sum_{n>=0} a(n)*C(n+m-1,n)*x^n/(1 + 3^n*x)^(n+m) for m>=1. %F A188457 L.g.f.: log(1+x) = Sum_{n>=1} a(n)*(x^n/n)/(1 + 3^n*x)^n. %F A188457 E.g.f.: 1 = Sum_{n>=0} a(n)*exp(-3^n*x)*x^n/n!. %F A188457 a(n) = Sum_{k=1..n} (-1)^(k+1)*C(n, k)*3^(k*(n-k))*a(n-k) for n>0 with a(0)=1. %F A188457 From _Peter Bala_, Apr 01 2013: (Start) %F A188457 Let E(x) = sum {n >= 0} x^n/(n!*3^C(n,2)). Then a generating function for this sequence is 1/E(-x) = sum {n >= 0} a(n)*x^n/(n!*3^C(n,2)) = 1 + x + 5*x^2/(2!*3) + 109*x^3/(3!*3^3) + 9449*x^4/(4!*3^6) + .... (End) %F A188457 exp( Sum_{n >= 1} a(n)*x^n/n ) = 1 + x + 3*x^2 + 39*x^3 + 2403*x^4 + 616131*x^5 + ... appears to have integer coefficients. - _Peter Bala_, Jan 14 2016 %e A188457 Illustration of the generating functions. %e A188457 E.g.f.: 1 = exp(-x) + exp(-3*x)*x + 5*exp(-9*x)*x^2/2! + 109*exp(-27*x)*x^3/3! +... %e A188457 L.g.f.: log(1+x) = x/(1+3*x) + 5*(x^2/2)/(1+9*x)^2 + 109*(x^3/3)/(1+27*x)^3 +... %e A188457 G.f.: 1 = 1/(1+x) + 1*x/(1+3*x)^2 + 5*x^2/(1+9*x)^3 + 109*x^3/(1+27*x)^4 +... %e A188457 G.f.: 1 = 1/(1+x)^2 + 1*2*x/(1+3*x)^3 + 5*3*x^2/(1+9*x)^4 + 109*4*x^3/(1+27*x)^5 +... %e A188457 G.f.: 1 = 1/(1+x)^3 + 1*3*x/(1+3*x)^4 + 5*6*x^2/(1+9*x)^5 + 109*10*x^3/(1+27*x)^6 +... %t A188457 a[n_] := a[n] = If[n == 0, 1, Sum[-(-1)^k Binomial[n, k] 3^(k(n-k)) a[n-k], {k, 1, n}]]; %t A188457 a /@ Range[0, 12] (* _Jean-François Alcover_, Nov 02 2019 *) %o A188457 (PARI) {a(n)=polcoeff(1-sum(k=0, n-1, a(k)*x^k/(1+3^k*x+x*O(x^n))^(k+1)), n)} %o A188457 for(n=0,20, print1(a(n),", ")) %o A188457 (PARI) /* Holds for m>=1: */ %o A188457 {a(n)=local(m=1);polcoeff(1-sum(k=0, n-1, a(k)*binomial(m+k-1,k)*x^k/(1+3^k*x+x*O(x^n))^(k+m)), n)/binomial(m+n-1,n)} %o A188457 for(n=0,20, print1(a(n),", ")) %o A188457 (PARI) /* Recurrence: */ %o A188457 {a(n)=if(n<1, n==0, sum(k=1, n, -(-1)^k*binomial(n, k)*3^(k*(n-k))*a(n-k)))} %o A188457 for(n=0,20, print1(a(n),", ")) %o A188457 (PARI) /* E.g.f.: */ %o A188457 {a(n)=n!*polcoeff(1-sum(k=0, n-1, a(k)*exp(-3^k*x+x*O(x^n))*x^k/k!), n)} %o A188457 for(n=0,20, print1(a(n),", ")) %Y A188457 Cf. A003024, A137435, A188456, A188455, A135079. %Y A188457 Cf. A137435, A339768. %K A188457 nonn,easy %O A188457 0,3 %A A188457 _Paul D. Hanna_, Mar 31 2011