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!)
A251693 a(n) = (n+1) * (2*n+1)^(n-2) * 3^n. 9
1, 2, 27, 756, 32805, 1940598, 145746783, 13286025000, 1425299311881, 175940774387370, 24567422246484579, 3828825486242232732, 658868122100830078125, 124081133675135015343006, 25384277097202185803440935, 5605841615843732059988768592, 1329181093536536811199747015953 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
Let G(x) = 1 + x*G(x)^3 be the g.f. of A001764, then the e.g.f. A(x) of this sequence satisfies:
(1) A(x) = exp( 3*x*A(x)^2 * G(x*A(x)^2)^2 ) / G(x*A(x)^2).
(2) A(x) = F(x*A(x)^2) where F(x) = exp(3*x*G(x)^2)/G(x) is the e.g.f. of A251663.
(3) A(x) = sqrt( Series_Reversion( x*G(x)^2 / exp(6*x*G(x)^2) )/x ).
E.g.f.: sqrt(-LambertW(-6*x)/(6*x))*(1+LambertW(-6*x)/6). - Vaclav Kotesovec, Dec 07 2014
EXAMPLE
E.g.f.: A(x) = 1 + 2*x + 27*x^2/2! + 756*x^3/3! + 32805*x^4/4! +...
such that A(x) = exp( 3*x*A(x)^2 * G(x*A(x)^2)^2 ) / G(x*A(x)^2),
where G(x) = 1 + x*G(x)^3 is the g.f. A001764:
G(x) = 1 + x + 3*x^2 + 12*x^3 + 55*x^4 + 273*x^5 + 1428*x^6 +...
Also, e.g.f. A(x) satisfies A(x) = F(x*A(x)^2) where
F(x) = 1 + 2*x + 11*x^2/2! + 120*x^3/3! + 2061*x^4/4! + 48918*x^5/5! +...
F(x) = exp( 3*x*G(x)^2 ) / G(x) is the e.g.f. of A251663.
MATHEMATICA
Table[(n + 1)*(2*n + 1)^(n - 2)*3^n, {n, 0, 50}] (* G. C. Greubel, Nov 13 2017 *)
PROG
(PARI) {a(n) = (n+1) * (2*n+1)^(n-2) * 3^n}
for(n=0, 20, print1(a(n), ", "))
(PARI) {a(n)=local(G=1, A=1); for(i=0, n, G = 1 + x*G^3 +x*O(x^n));
A=( serreverse( x*G^2 / exp(6*x*G^2) )/x )^(1/2); n!*polcoeff(A, n)}
for(n=0, 20, print1(a(n), ", "))
(Magma) [(n + 1)*(2*n + 1)^(n - 2)*3^n: n in [0..50]]; // G. C. Greubel, Nov 13 2017
CROSSREFS
Sequence in context: A138458 A090248 A300591 * A182934 A078102 A221534
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Dec 07 2014
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 1 17:43 EDT 2024. Contains 372175 sequences. (Running on oeis4.)