cp's OEIS Frontend

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.

A251693 a(n) = (n+1) * (2*n+1)^(n-2) * 3^n.

This page as a plain text file.
%I A251693 #19 Sep 08 2022 08:46:10
%S A251693 1,2,27,756,32805,1940598,145746783,13286025000,1425299311881,
%T A251693 175940774387370,24567422246484579,3828825486242232732,
%U A251693 658868122100830078125,124081133675135015343006,25384277097202185803440935,5605841615843732059988768592,1329181093536536811199747015953
%N A251693 a(n) = (n+1) * (2*n+1)^(n-2) * 3^n.
%H A251693 G. C. Greubel, <a href="/A251693/b251693.txt">Table of n, a(n) for n = 0..305</a>
%F A251693 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:
%F A251693 (1) A(x) = exp( 3*x*A(x)^2 * G(x*A(x)^2)^2 ) / G(x*A(x)^2).
%F A251693 (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.
%F A251693 (3) A(x) = sqrt( Series_Reversion( x*G(x)^2 / exp(6*x*G(x)^2) )/x ).
%F A251693 E.g.f.: sqrt(-LambertW(-6*x)/(6*x))*(1+LambertW(-6*x)/6). - _Vaclav Kotesovec_, Dec 07 2014
%e A251693 E.g.f.: A(x) = 1 + 2*x + 27*x^2/2! + 756*x^3/3! + 32805*x^4/4! +...
%e A251693 such that A(x) = exp( 3*x*A(x)^2 * G(x*A(x)^2)^2 ) / G(x*A(x)^2),
%e A251693 where G(x) = 1 + x*G(x)^3 is the g.f. A001764:
%e A251693 G(x) = 1 + x + 3*x^2 + 12*x^3 + 55*x^4 + 273*x^5 + 1428*x^6 +...
%e A251693 Also, e.g.f. A(x) satisfies A(x) = F(x*A(x)^2) where
%e A251693 F(x) = 1 + 2*x + 11*x^2/2! + 120*x^3/3! + 2061*x^4/4! + 48918*x^5/5! +...
%e A251693 F(x) = exp( 3*x*G(x)^2 ) / G(x) is the e.g.f. of A251663.
%t A251693 Table[(n + 1)*(2*n + 1)^(n - 2)*3^n, {n, 0, 50}] (* _G. C. Greubel_, Nov 13 2017 *)
%o A251693 (PARI) {a(n) = (n+1) * (2*n+1)^(n-2) * 3^n}
%o A251693 for(n=0,20,print1(a(n),", "))
%o A251693 (PARI) {a(n)=local(G=1,A=1); for(i=0, n, G = 1 + x*G^3 +x*O(x^n));
%o A251693 A=( serreverse( x*G^2 / exp(6*x*G^2) )/x )^(1/2); n!*polcoeff(A, n)}
%o A251693 for(n=0, 20, print1(a(n), ", "))
%o A251693 (Magma) [(n + 1)*(2*n + 1)^(n - 2)*3^n: n in [0..50]]; // _G. C. Greubel_, Nov 13 2017
%Y A251693 Cf. A251663, A001764.
%Y A251693 Cf. Variants: A127670, A251694, A251695, A251696, A251697, A251698, A251699, A251700.
%K A251693 nonn
%O A251693 0,2
%A A251693 _Paul D. Hanna_, Dec 07 2014