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!)
A196556 O.g.f.: Sum_{n>=0} 3*(n+3)^(n-1) * x^n / Product_{k=1..n} (1+k*x). 5
1, 3, 12, 66, 483, 4476, 50454, 671649, 10328118, 180341094, 3527385345, 76435691250, 1818255212490, 47118807865863, 1321527658352016, 39889359465259446, 1289471521115731611, 44450463108654209136, 1627806562174453037802 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
E.g.f.: exp(-3*LambertW(exp(-x)-1)).
a(n) = Sum_{k=0..n} (-1)^(n-k)*Stirling2(n, k)*3*(k+3)^(k-1).
E.g.f.: A(x) = G(x)^3 where G(x) = e.g.f. of A058864, which is the number of labeled chordal graphs (connected or not) on n nodes with no induced path P_4.
a(n) ~ 3*sqrt(exp(1)-1) * n^(n-1) / (exp(n-3) * (1-log(exp(1)-1))^(n-1/2)). - Vaclav Kotesovec, Jul 09 2013
EXAMPLE
O.g.f.: A(x) = 1 + 3*x + 12*x^2 + 66*x^3 + 483*x^4 + 4476*x^5 +...
where the o.g.f. is given by:
A(x) = 1 + 3*4^0*x/(1+x) + 3*5^1*x^2/((1+x)*(1+2*x)) + 3*6^2*x^3/((1+x)*(1+2*x)*(1+3*x)) + 3*7^3*x^4/((1+x)*(1+2*x)*(1+3*x)*(1+4*x)) +...
E.g.f.: A(x) = 1 + 3*x + 12*x^2/2! + 66*x^3/3! + 483*x^4/4! + 4476*x^5/5! +...
where the e.g.f. is given by:
A(x)^(1/3) = 1 + x + 2*x^2/2! + 8*x^3/3! + 49*x^4/4! + 402*x^5/5! + 4144*x^6/6! +...+ A058864(n)*x^n/n! +...
MATHEMATICA
CoefficientList[Series[E^(-3*LambertW[E^(-x)-1]), {x, 0, 20}], x]* Range[0, 20]! (* Vaclav Kotesovec, Jul 09 2013 *)
PROG
(PARI) {a(n)=polcoeff(sum(m=0, n, 3*(m+3)^(m-1)*x^m/prod(k=1, m, 1+k*x+x*O(x^n))), n)}
(PARI) /* E.g.f. = G(x)^3 where G(x) = e.g.f. of A058864 */
{A058864(n)=polcoeff(sum(m=0, n, (m+1)^(m-1)*x^m/prod(k=1, m, 1+k*x+x*O(x^n))), n)}
{a(n)=n!*polcoeff(sum(k=0, n, A058864(k)*x^k/k!+x*O(x^n))^3, n)}
(PARI) a(n)=sum(k=0, n, (-1)^(n-k)*stirling(n, k, 2)*3*(k+3)^(k-1));
(PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(exp(-3*lambertw(exp(-x)-1)))) \\ Seiichi Manyama, Nov 21 2021
CROSSREFS
Sequence in context: A120575 A009362 A123227 * A107713 A289539 A370342
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Oct 03 2011
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 April 23 02:53 EDT 2024. Contains 371906 sequences. (Running on oeis4.)