login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A135079 E.g.f. A(x) = Sum_{n>=0} exp(3^n*x)*x^n/n!. 11
1, 2, 8, 56, 704, 15392, 593408, 39691136, 4650143744, 944100803072, 334651494268928, 205435333440321536, 219775256161359233024, 407034554694060677537792, 1312205966809501720566038528 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
a(n) is the number of labeled graphs with (at most) 2 colors of vertices where vertices of the same color are never adjacent and the graphs may have up to 2 types of edges. - Geoffrey Critzer, Apr 20 2020
LINKS
FORMULA
a(n) = Sum_{k=0..n} C(n, k)*3^(k*(n-k)).
O.g.f.: A(x) = Sum_{n>=0} x^n/(1 - 3^n*x)^(n+1). - Paul D. Hanna, Aug 08 2009
Let E(x) = sum {n >= 0} x^n/(n!*3^C(n,2)). Then a generating function for this sequence is E(x)^2 = sum {n >= 0} a(n)*x^n/(n!*3^C(n,2)) = 1 + 2*x + 8*x^2/(2!*3) + 56*x^3/(3!*3^3) + 704*x^4/(4!*3^6) + .... Cf. A188457. - Peter Bala, Apr 01 2013
a(n) ~ c * 3^(n^2/4)*2^(n+1/2)/sqrt(Pi*n), where c = Sum_{k = -infinity..infinity} 3^(-k^2) = 1.6914596816817... if n is even and c = Sum_{k = -infinity..infinity} 3^(-(k+1/2)^2) = 1.69061120307521... if n is odd. - Vaclav Kotesovec, Jun 24 2013
MATHEMATICA
Table[Sum[Binomial[n, k]*3^(k*(n-k)), {k, 0, n}], {n, 0, 20}] (* Vaclav Kotesovec, Jun 24 2013 *)
PROG
(PARI) {a(n)=sum(k=0, n, binomial(n, k)*3^(k*(n-k)))}
(PARI) /* E.g.f.: */ {a(n)=n!*polcoeff(sum(k=0, n, exp(3^k*x +x*O(x^n))*x^k/k!), n)}
(PARI) {a(n)=polcoeff(sum(k=0, n, x^k/(1 - 3^k*x +x*O(x^n))^(k+1)), n)} \\ Paul D. Hanna, Aug 08 2009
CROSSREFS
Cf. A047863 (variant). A188457.
Sequence in context: A203199 A348875 A302999 * A084872 A254231 A191713
KEYWORD
nonn,easy
AUTHOR
Paul D. Hanna, Nov 24 2007
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 3 04:11 EDT 2024. Contains 372205 sequences. (Running on oeis4.)