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!)
A371416 Expansion of (1/x) * Series_Reversion( x * (1 - 3*x - x^3) ). 0
1, 3, 18, 136, 1152, 10458, 99472, 978453, 9871686, 101590654, 1062271704, 11253818628, 120535386692, 1303045817184, 14199323523912, 155805565801803, 1720024043803542, 19090440094335912, 212897898182054224, 2384431948345110510, 26808516659219953680 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = (1/(n+1)) * Sum_{k=0..floor(n/2)} 3^k * binomial(n+k,k) * binomial(4*n+k+2,n-2*k).
a(n) = (1/(n+1)) * Sum_{k=0..floor(n/3)} 3^(n-3*k) * binomial(n+k,k) * binomial(2*n-2*k,n-3*k).
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(serreverse(x*(1-3*x-x^3))/x)
(PARI) a(n) = sum(k=0, n\2, 3^k*binomial(n+k, k)*binomial(4*n+k+2, n-2*k))/(n+1);
(PARI) a(n) = sum(k=0, n\3, 3^(n-3*k)*binomial(n+k, k)*binomial(2*n-2*k, n-3*k))/(n+1);
CROSSREFS
Sequence in context: A177406 A289430 A247452 * A118970 A003122 A275549
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Mar 23 2024
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 June 23 15:30 EDT 2024. Contains 373651 sequences. (Running on oeis4.)