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!)
A349847 Expansion of (1 + 8*x) / sqrt(1 - 4*x). 3
1, 10, 22, 68, 230, 812, 2940, 10824, 40326, 151580, 573716, 2183480, 8347612, 32033848, 123321400, 476050320, 1842020550, 7142249340, 27743985060, 107946346200, 420608639220, 1641030105000, 6410161959240, 25066222437360, 98115049503900, 384391435902552 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Sum_{n>=0} (a(n)/(-4)^n) is the Cauchy product of Sum_{n>=0} (-A349845(n)/8^n) with itself.
LINKS
Wikipedia, Cauchy product
FORMULA
For n > 0, a(n) = 8*binomial(2*(n-1),n-1) + binomial(2*n,n) = binomial(2*(n-1),n-1) * (12 - 2/n).
a(n) ~ 4^n * (3/sqrt(Pi*n)).
EXAMPLE
a(1) = binomial(0,0) * (12 - 2/1) = 10;
a(2) = binomial(2,1) * (12 - 2/2) = 22;
a(3) = binomial(4,2) * (12 - 2/3) = 68;
a(4) = binomial(6,3) * (12 - 2/4) = 230.
MATHEMATICA
CoefficientList[Series[(1+8x)/Sqrt[1-4x], {x, 0, 30}], x] (* Harvey P. Dale, Jun 08 2023 *)
PROG
(PARI) a(n) = if(n, binomial(2*(n-1), n-1) * (12 - 2/n), 1)
CROSSREFS
Sequence in context: A033459 A255048 A354879 * A333104 A214959 A054095
KEYWORD
nonn,easy
AUTHOR
Jianing Song, Dec 01 2021
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 April 24 07:06 EDT 2024. Contains 371920 sequences. (Running on oeis4.)