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!)
A372506 Coefficient of x^n in the expansion of 1 / ( (1-x) * (1-2*x) )^n. 0
1, 3, 23, 198, 1795, 16758, 159446, 1537308, 14967843, 146833830, 1449054178, 14369723316, 143072565454, 1429331585724, 14320668653580, 143838879376248, 1447883909314851, 14602334949928710, 147518977428892010, 1492559101878005700, 15121898521185194970 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = Sum_{k=0..n} binomial(n+k-1,k) * binomial(3*n-1,n-k).
The g.f. exp( Sum_{k>=1} a(k) * x^k/k ) has integer coefficients and equals (1/x) * Series_Reversion( x * (1-x) * (1-2*x) ).
a(n) ~ (1 + sqrt(3)) * 2^(n - 3/2) * 3^((3*n-1)/2) / sqrt(Pi*n). - Vaclav Kotesovec, May 04 2024
MATHEMATICA
Table[SeriesCoefficient[1/((1 - x)*(1 - 2*x))^n, {x, 0, n}], {n, 0, 20}] (* Vaclav Kotesovec, May 04 2024 *)
Table[Binomial[3*n - 1, n] * Hypergeometric2F1[-n, n, 2*n, -1], {n, 0, 20}] (* Vaclav Kotesovec, May 04 2024 *)
PROG
(PARI) a(n, s=1, t=1, u=1) = sum(k=0, n\s, binomial(t*n+k-1, k)*binomial((t+u+1)*n-(s-1)*k-1, n-s*k));
CROSSREFS
Sequence in context: A331718 A093155 A370105 * A241886 A096649 A370283
KEYWORD
nonn
AUTHOR
Seiichi Manyama, May 04 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 29 10:48 EDT 2024. Contains 373837 sequences. (Running on oeis4.)