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!)
A351438 G.f. A(x) satisfies: A(x) = 1 + x + x^2 * A(x/(1 - x)) / (1 - x)^3. 3
1, 1, 1, 4, 11, 29, 85, 281, 1003, 3764, 14811, 61327, 267153, 1219497, 5807473, 28763988, 147898511, 788330533, 4349414397, 24799271517, 145904796179, 884577652276, 5519858796807, 35415056743815, 233393746525705, 1578437838849645, 10945142365689985, 77752626344174676 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
a(0) = a(1) = 1; a(n) = Sum_{k=0..n-2} binomial(n,k+2) * a(k).
MATHEMATICA
nmax = 27; A[_] = 0; Do[A[x_] = 1 + x + x^2 A[x/(1 - x)]/(1 - x)^3 + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
a[0] = a[1] = 1; a[n_] := a[n] = Sum[Binomial[n, k + 2] a[k], {k, 0, n - 2}]; Table[a[n], {n, 0, 27}]
CROSSREFS
Sequence in context: A341341 A124861 A369844 * A110579 A361218 A024829
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Feb 11 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 September 10 01:04 EDT 2024. Contains 375769 sequences. (Running on oeis4.)