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!)
A179848 Expansion of series reversion of generating function for triangular numbers. 10

%I #20 Mar 24 2023 14:34:06

%S 0,1,-3,12,-55,273,-1428,7752,-43263,246675,-1430715,8414640,

%T -50067108,300830572,-1822766520,11124755664,-68328754959,

%U 422030545335,-2619631042665,16332922290300,-102240109897695,642312451217745,-4048514844039120,25594403741131680

%N Expansion of series reversion of generating function for triangular numbers.

%H Alois P. Heinz, <a href="/A179848/b179848.txt">Table of n, a(n) for n = 0..375</a>

%F A001764(n) = 0^n - (-1)^n * a(n).

%F G.f. A(x) satisfies A(x) = x * (1 - A(x))^3.

%F G.f.: 1 - sinh( arcsinh( sqrt( 27*x/4 ) ) / 3 ) / sqrt( 3*x/4 ).

%F D-finite with recurrence +2*n*(2*n+1)*a(n) +3*(3*n-1)*(3*n-2)*a(n-1)=0. - _R. J. Mathar_, Mar 24 2023

%e G.f. = x - 3*x^2 + 12*x^3 - 55*x^4 + 273*x^5 - 1428*x^6 + 7752*x^7 - 43263*x^8 + ...

%p a:= n-> coeff(series(RootOf(A=x*(1-A)^3, A), x, n+1), x, n):

%p seq(a(n), n=0..30); # _Alois P. Heinz_, May 16 2012

%p # Using function CompInv from A357588.

%p 0, CompInv(23, n -> n*(n+1)/2); # _Peter Luschny_, Oct 05 2022

%t CoefficientList[Series[1 - Sinh[ArcSinh[Sqrt[27*x/4]]/3]/Sqrt[3*x/4], {x, 0, 50}], x] (* _G. C. Greubel_, Aug 14 2018 *)

%o (PARI) {a(n) = if( n<1, 0, -(-1)^n * (3*n)! / (n! * (2*n+1)!) )};

%o (PARI) {a(n) = if( n<1, 0, polcoeff( serreverse( x / (1 - x)^3 + x * O(x^n) ), n))};

%o (PARI) {a(n) = my(A); if( n<0, 0, A = O(x); for( k = 0, n, A = x * (1 - A)^3 ); polcoeff( A, n ))};

%o (Magma) [n le 0 select 0 else (-1)^(n+1)*Factorial(3*n)/( Factorial(n)* Factorial(2*n+1)): n in [0..30]]; // _G. C. Greubel_, Aug 14 2018

%Y Cf. A000217.

%K sign

%O 0,3

%A _Michael Somos_, Jan 10 2011

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 10:29 EDT 2024. Contains 371905 sequences. (Running on oeis4.)