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!)
A307875 G.f. A(x) satisfies: A(x) = 1 + x*(1 + x*A(x/(1 - x)^2)/(1 - x)^2). 0
1, 1, 1, 3, 8, 23, 78, 308, 1343, 6288, 31520, 169556, 976219, 5974381, 38597158, 262016556, 1864047379, 13870571346, 107732190252, 871392244426, 7323432971279, 63823847508765, 575833492837041, 5370836704825787, 51720220231890625, 513595474725399215, 5253091234710411001 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
Recurrence: a(n+1) = Sum_{k=0..n} binomial(n+k,2*k+1)*a(k).
MATHEMATICA
terms = 26; A[_] = 0; Do[A[x_] = 1 + x (1 + x A[x/(1 - x)^2]/(1 - x)^2) + O[x]^(terms + 1) // Normal, terms + 1]; CoefficientList[A[x], x]
a[n_] := a[n] = Sum[Binomial[n + k - 1, 2 k + 1] a[k], {k, 0, n - 1}]; a[0] = 1; a[1] = 1; Table[a[n], {n, 0, 26}]
CROSSREFS
Sequence in context: A189359 A125782 A343176 * A321730 A047143 A148779
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, May 02 2019
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 10:53 EDT 2024. Contains 371936 sequences. (Running on oeis4.)