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!)
A351660 G.f. A(x) satisfies: A(x) = 1 + x + x^2 + x^3 * A(x/(1 - x)) / (1 - x)^2. 3
1, 1, 1, 1, 3, 7, 15, 33, 81, 225, 679, 2139, 6931, 23185, 80809, 295141, 1128487, 4492363, 18506923, 78584193, 343414489, 1544535129, 7151822771, 34086446307, 167058478355, 840700482197, 4337529697349, 22915761303125, 123863743341203, 684588061704611, 3867278506969535 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,5
LINKS
FORMULA
a(0) = a(1) = a(2) = 1; a(n) = Sum_{k=0..n-3} binomial(n-2,k+1) * a(k).
MATHEMATICA
nmax = 30; A[_] = 0; Do[A[x_] = 1 + x + x^2 + x^3 A[x/(1 - x)]/(1 - x)^2 + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
a[n_] := a[n] = If[n < 3, 1, Sum[Binomial[n - 2, k + 1] a[k], {k, 0, n - 3}]]; Table[a[n], {n, 0, 30}]
CROSSREFS
Sequence in context: A225338 A101892 A211279 * A199882 A147102 A147379
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Feb 16 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 April 19 18:58 EDT 2024. Contains 371798 sequences. (Running on oeis4.)