The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A351756 G.f. A(x) satisfies: A(x) = 1 + x * A(x/(1 - 2*x)) / (1 - 2*x)^2. 5
1, 1, 5, 23, 119, 709, 4749, 35031, 281271, 2438565, 22673021, 224739303, 2363075191, 26246762213, 306830932749, 3763323446487, 48292462190743, 646763208308421, 9020009372203965, 130737162573013159, 1965798562640921879, 30613694640191725381 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(0) = 1; a(n) = Sum_{k=1..n} binomial(n,k-1) * 2^(k-1) * a(n-k).
MATHEMATICA
nmax = 21; A[_] = 0; Do[A[x_] = 1 + x A[x/(1 - 2 x)]/(1 - 2 x)^2 + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
a[0] = 1; a[n_] := a[n] = Sum[Binomial[n, k - 1] 2^(k - 1) a[n - k], {k, 1, n}]; Table[a[n], {n, 0, 21}]
CROSSREFS
Sequence in context: A193704 A294356 A162815 * A033312 A151881 A229811
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Feb 18 2022
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 May 14 07:57 EDT 2024. Contains 372530 sequences. (Running on oeis4.)